Set Sales Order’s Supply Required by Date to current date according to account time zone via SuiteScript

var targetTime = new Date(); targetTime.setMinutes(targetTime.getMinutes() + targetTime.getTimezoneOffset()) let soRec = record.load({ type:’salesorder’, id:51451//internal is of sales order }); soRec.setSublistValue({ sublistId: ‘item’, fieldId: ‘requesteddate’, line: 0, value: targetTime }); soRec.save()

How to convert an extension into bundle.

To prepare our extension for bundling: So for this we need to create folder in the file cabinet in our NetSuite this will be containing our extension files, including the Manifest.json. For example : SuiteScript/Deploy_Extensions/<VendorName>/<ExtensionName>@<Version>/ Click edit next to the extension folder you are including in the bundle. 2. In the Document Folder record, check the Available for… Continue reading How to convert an extension into bundle.

email address experienced bounce

email address experienced bounce to solve this issue we need to login to netsuite and make changes we need to go this navigation and select the account and we need to remove then it will go that error

How to add paypal Payment method to checkout page using Netsuite.

If customers wants to place there order by paying using paypal, they can use payment method as paypal checkout method. If you do not already have a PayPal merchant account, go to PayPal to set one up. In NetSuite, you can go to Setup > Accounting > PayPal Accounts > New and click the link near the top of… Continue reading How to add paypal Payment method to checkout page using Netsuite.