Return Multiple Values to Next Script Entry Points

There are scenarios where we have to pass or return multiple values to another Entry point, so that value can process as per the requirement.Normally, The first Return statement that holds some specific data in any Entry point is accessible to next Point by logging the context in initial line.This is not feasible in cases… Continue reading Return Multiple Values to Next Script Entry Points

Remove Standard Elements in a Basic PDF Layout

User wants to remove the elements of Standard Fields when using Basic Printing Type. Navigate to Customization > Forms > Transaction Form PDF Layouts Click Customize or Edit beside the template to modify In the editor, choose the element for the Standard Field in the Selected Element drop down field Under Element Size section, set the Width and Height fields to 0 Click Save

Display applied customer credits when printing sales orders.

Implement a workaround, that would store the sum of the amount on a custom field. Then, expose the custom field on the Advanced PDF.  Create a saved search to generate the sum of the customer deposit Navigate to List > Search > Saved Searches > New Create the Saved Search with the following settings Under… Continue reading Display applied customer credits when printing sales orders.

Store Errors in script as a csv file

//Info: JOIN-203 Bugs & errors are common in every script. Usually, we used to Identify these by using try and catch statements.what if there are chances to get ‘n’ number of errors in each part…? its better if we are able identify errors in initial run, save it & continue the next section. Even though… Continue reading Store Errors in script as a csv file