To break a long word while creating an item label pdf using HTML and CSS. When table with nested table is created and added columns, the nested table columns data were overlapped with the parent table columns. And then nested table was removed and added just rows and columns in the table, the overlapping issue… Continue reading To break a long word while creating an item label pdf using HTML and CSS.
Author: Mintu Antony
To disable a checkbox in edit context if it was checked initially during the record creation.
The checkbox was checked during the record creation, and when record is edited then it should be disabled. In User Event Script, beforeLoad(scriptContext) entry point is used. It has scriptContext.form as a parameter.
Handling Form data in integration of NetSuite and a third party.
The function below can be used handle form-data. Headers format for the APIconfiguration.
options.source to list values in a field using suitelet script.
In a form created using suitelet, to list values in a field we can use the options.source in Form.addField(options). options.source – The internalId or scriptId of the source list for this field if it is a select (List/Record) or multi-select field. For example,We can list the vendor records in a field in the form created… Continue reading options.source to list values in a field using suitelet script.
Checkbox to specify that any server-side SuiteScripts and workflows should be triggered for the current CSV import.
Setup -> Import/Export -> Import CSV Records In step1, select the import type and record type and also upload the csv file. Click on the Next button. In the step2, select the import options. Then select the advanced options, Check the checkbox “RUN SERVER SUITESCRIPT AND TRIGGER WORKFLOWS”. It is to specify that any server-side… Continue reading Checkbox to specify that any server-side SuiteScripts and workflows should be triggered for the current CSV import.
Steps to create custom subtab in a record.
Customizations -> Forms -> Subtabs -> New Enter a Title and, Select the type of record which is to be customized. Click save button.
Make a copy of vendor or customer records using user event script.
To make a copy of vendor or customer records, the create context type can be used instead of copy context type in the user event script. In the user event script, beforeSubmit(scriptContext) entry point is selected. It is because in the view mode of the record, “Make a copy” option is not available in the… Continue reading Make a copy of vendor or customer records using user event script.
API Config Module for real time integration of Product Sync from NetSuite to Mearsk WMS : Create/Update/Delete
Add task rate based on location and type of delivery when adding an item in the Sales Order Record
Client Script with entry point postSourcing can be used.
Auto-applying Credit memo when an invoice is created.
User event script with afterSubmit entry point is used.