Set Date and Time value of a custom field based on User’s preferred Time Zone

To set the date and time value of a custom field based on User’s preferred Time Zone, we can use the sample script below.Script below captures the current date and time when the Sales Order record is created based on the User’s preferred Time Zone. For the sample, the User’s preferred Time Zone is ‘Asia/Manila’… Continue reading Set Date and Time value of a custom field based on User’s preferred Time Zone

Vendor Payments

Enter vendor payments to record when you pay a vendor bill. The payment records the payment date and the amount paid. By tracking payments you make to vendors, you know how much money you owe to specific vendors When you record a vendor payment, the payment posts to the journal accounts affected by the payment.… Continue reading Vendor Payments

The user is unable to view one of the accounts they have access to on the “View All Roles” page.

Customer has access to Account “124567 Company A” using the email address abc@noemail.com. The same customer was given access to another NetSuite account. For instance, Account 012456 Company B, using the same email address (abc@noemail.com). When the customer log in to his account, he cannot see the role/s assigned to him for Account 012456 Company… Continue reading The user is unable to view one of the accounts they have access to on the “View All Roles” page.

Multiple UOM in NetSuite

The Multiple Units of Measure feature enables to define various units used to stock, purchase, and sell inventory items, and track non-monetary accounts. If you are using the feature with inventory items, units of measure provides greater flexibility and accuracy when tracking and selling inventory. For example, you might purchase cable in pallets, stock the… Continue reading Multiple UOM in NetSuite

How to get the Search API response from the suit script

using this methode we can get the responce of api in the suitescript and pass the values throug the model to javascript. searchCasePack: function searchCasePack(itemIds) {     //console.log(‘itemIdssearchCasePack’, itemIds);     var itemIdsArray = [];     var casePackItemSearch = {};     var ItemSearchArr_set = [];     if (itemIds) {    … Continue reading How to get the Search API response from the suit script

Build a Vue project into a single HTML file.

‘vite-plugin-singlefile’ allows you to inline all JavaScript and CSS resources directly into the final index.html file. To install type this in command prompt Add the given code in vite.config.js Build the app and now a single index.html file will be created.