To deploy local source files to a NetSuite SSP application: Go to your command line or terminal window. Access the SCA source directory that contains the package.json file. If implementing the 2020.1 release or later, this directory is the SC_xxx directory within your root source directory. For example: SC_20.1 If implementing 2019.2, this directory is the *_Live directory… Continue reading Deploy local source files to a NetSuite SSP application:
Tag: sca
How to resolve error “Error(s) in field: Matrix item name template” while updating matrix item.
This error will come when custom id is missed in template for that we have to update the template . Steps: This error will come for item which have mentioned color, size and packaging in the initial development of NetSuite. First select itemLists->Accounting->items->list. Edit itemAccounting->Matrix item name template. Update matrix.
Check the changes in the order confirmation email template
We recently encountered a situation in which we needed to make changes to the order confirmation email template in the production domain. After making changes to the email template, we can test the changes using the method described below rather than placing a new order. 1.Make changes innthe email template 2.Take any sales order in… Continue reading Check the changes in the order confirmation email template
Picked and packed status in item fulfillment
Usually the “picked” and “packed” items will show the status as “pending shipment” as per the SCAstandard feature, But if we need to point out the exact status of “picked” and “packed” we can use the below code in Extension. So for the “picked” item, the status will be “picked” and for “packed” item the… Continue reading Picked and packed status in item fulfillment
How to add the price value next to the UPS Ground option in the Delivery option step during check out page by using extension.
Adding price value next to UPS ground option in the delivery option step during checkout page. in .tpl file
Find the card type using card number
The requirement is to find out the card type of a credit/card in the backend using the card number entered in the card. Use the below code to get the card type of a card.
How to replace default validation error message in PDP page by using extension.
Here replacing default data validation error message from source code by using new extension … PDP extension entry file
Resolve Error: ” Please Update Your Bookmarks and Links. You Will Be Redirected to the Home Page in 3 Seconds” When Downloading Payment File Administration File Reference
When downloading the File Reference of a Bill Payment and there is an error saying “Please Update your Bookmarks and Links. The user will be redirected to the home page in 3 seconds.” This is caused by a setting on the File Cabinet folder which is set to “Private” which allows only one person to download the file in this scenario. Solution: Log in… Continue reading Resolve Error: ” Please Update Your Bookmarks and Links. You Will Be Redirected to the Home Page in 3 Seconds” When Downloading Payment File Administration File Reference
Image URL in SCA
Recently we faced an issue that some of the images in the website are missing. When we analyzed the issue, we understood that the URL of image contains the domain name. So when the domain expiring, the image also becomes unavailable. To solve the issue , whenever the image is uploading to the netsuite and… Continue reading Image URL in SCA
Troubleshoot JavaScript and Suitescript Performance with Console Timers
We may experience delays in the execution of our Suitescript or JavaScript, It will be very tricky to find out where the things are going wrong. Fortunately for us, there is a timer feature built into JavaScript that we can use to track how much time has elapsed between two arbitrary points. In combination with events,… Continue reading Troubleshoot JavaScript and Suitescript Performance with Console Timers