My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Comments
-
Hi , If you want to manually return the error when the condition did not met then do like this. var errObj= new Object(); errObj.error= 500; errObj.message= "The parameter..."; return errObj; Hope this solution works for you. Regards, Ravi
-
Hi Ashok, I think you can create two different PDF's in a single pdf but in different pages using <pdfset> tag. Code Sample: var xml = "<?xml version=\"1.0\"?>\n<!DOCTYPE pdf PUBLIC \"-//big.faceless.org//report\" \"report-1.1.dtd\">\n"; xml += "<pdfset>"; xml += "<pdf>"; xml += "<body>"; xml += "This is Page 1"; xml +=…
-
Hi , If you need to export the project tasks info through UI you can do it by Saved search. Navigate to Transactions -> Management -> saved Search -> New. click on the project task and apply filters and columns as requested and do Save & Run on save of saved search you will get options to download the results in excel or…
-
Hi Yusuf, Please try the saved search below. Regards, Ravi
-
Hi GKC, If you want to force stop the only way to stop the schedule script running in an infinite loop is to delete the deployment. Hope this will work. Regards, Ravi
-
Hi Chris, Could you please find the below solution. Create an user event before script on the sales order and create Billing Schedule using record.create as this is a scriptable record. Initially create Billing Schedule as public and set the Billing schedule created in the Billing schedule field using setValue() method on…