Use case. Please find below details for your reference. I would like to understand the following: Sales Revenue Oct’23 – 220,671.60 and Cost of Sales -382,183.79 As per my understanding, the ledger will be affected only after the sales invoices are approved by the Finance dept. If so, below the Cost of Sales against the… Continue reading Cost of Sales and Sales Revenue | Requirement Analysis
Month: November 2023
The function for calculating the number of days from a mentioned day to today is as follows:
The input of the function is the date. The date is the format of month/date/year.
System File Corruption solution in CMD
If you suspect system file corruption in your Windows operating system, you can use the System File Checker (SFC) tool to scan and repair corrupted system files. Here’s how you can do it: Open Command Prompt as Administrator: Right-click on the Start button (Windows icon) and select “Command Prompt (Admin)” or “Windows PowerShell (Admin).” If… Continue reading System File Corruption solution in CMD
Syntax Errors
Syntax errors in the Command Prompt (CMD) usually occur when the entered command doesn’t follow the correct syntax for the intended operation. Here are some tips to identify and resolve syntax errors: Check the Command Documentation: Consult the documentation or help information for the specific command you are trying to use. This will provide details… Continue reading Syntax Errors
If you’re encountering an “Access Denied” error in the Command Prompt
Here are some steps to troubleshoot and resolve the “Access Denied” issue: Run CMD as Administrator: Right-click on the CMD icon and select “Run as administrator.” Running CMD with administrative privileges often grants additional permissions. Check File or Folder Permissions: If you’re trying to access or modify a specific file or folder, check the permissions… Continue reading If you’re encountering an “Access Denied” error in the Command Prompt
if you’re getting an “is not recognized as an internal or external command” Solution
The error “is not recognized as an internal or external command” typically occurs when the Command Prompt (CMD) cannot find the executable or script you’re trying to run. Here are some steps to troubleshoot and resolve this issue: Check for Typos: Ensure that there are no typos in the command you entered. Check for correct… Continue reading if you’re getting an “is not recognized as an internal or external command” Solution
Saved Searches for Custom Sublists
To be used for a custom sublist, a saved search must have at least one list/record type field defined as an available filter. Custom sublist results are joined to the form record based on this field’s values. That is, the first item listed on the Available Filters subtab of the saved search must be a… Continue reading Saved Searches for Custom Sublists
Setting up a Case Alert on Support Cases
There are two distinct stages to setting up a new case alert. First, we need to create a case-saved search which will be used to monitor the required performance criteria. Once this is done, we create a new case alert assign the various recipients, and select the required email template. To create a case saved… Continue reading Setting up a Case Alert on Support Cases
HOW TO RETURN A VALUE FROM A BACKEND SUITELET TO A CLIENT SCRIPT?
Print Shipping Cost Separately From Handling Cost in Advanced PDF/HTML Template
Navigate to Customization > Forms > Advanced PDF/HTML Templates Preferred Advanced PDF Template: Click Customize/Edit Toggle Source Code Source Code: Add the following code: <#assign shippingcost = record.shippingcost – record.handlingcost><table><tr><th>${record.shippingcost@label}</th><td>${shippingcost?string.currency}</td></tr><tr><th>${record.handlingcost@label}</th><td>${record.handlingcost}</td></tr></table></code>