File/Folder Description DeployDistribution/ Created the first time you run the gulp extension:deploy command, this directory containsall of the files associated with the compiled application. After compilation, Gulp.js deploys thecontents of this directory to your NetSuite file cabinet. Do not manually edit the files in this directory gulp/ Created when you extract the extension developer tools,… Continue reading The Top-Level Extension Development Directory
Author: Remya Krishnan
HOW TO CREATE A CUSTOM RECORD
A) Go to Customization > Lists, Records, & Fields > Record Types > New. B) See Entering Name and Display Settings 1)In the Name field, enter a name for the record type. The maximum number of characters you can enter in the Name field is 300 2) In the ID field, enter a unique alphanumeric… Continue reading HOW TO CREATE A CUSTOM RECORD
DISPLAY A MYACCOUNT MENU TAB”CUSTOMER NOTIFICATION”
1)First of all creating an extension 2)Take the entry point file of the extension[JJ.extncheck.MyCoolModule.js] 3)In view file comment the unwanted module file[MyCoolModule.View.js] 4)Using command “gulp extension:local” and “gulp extension:deploy” 5)Activate the domain and the change will be present in the domain
How to change the name of a product in PDP[Product Details Page] using source code
a) Inspect the corresponding name that we want to change b) Find the corresponding template c) Find the corresponding view file d) Then we have to find out the respected class in the corresponding template, we have to find the class from there we can find the variable that is passed to the view file… Continue reading How to change the name of a product in PDP[Product Details Page] using source code
how to clear ” npm cache “
Installing npm then showing continuos error then clear the npm cache how to clear ” npm cache “ commands 1)npm cache clean –force also verify the cache, by running the following command. 2)npm cache verify
How to create a oauth1 directory
In the SuiteCommerce Advanced source directory, create a new directory named oauth1 in the ns_npm_repository folder: …/ns_npm_repository/oauth1 2.Copy the source files from the oauth1 folder in the TBApatch-elbrus-vinson-kilimanjaro.zip file to the new oauth1 directory you created in your source folder. 3)The zip file is attached here
Basic steps for the command “gulp deploy”
1)First we have to open a terminal in our source folder 2)Then we check the commands for finding the version of the nodes, version of the gulp etc 3)Install npm by using the command “npm install” 4)Installing gulp by using the command “npm install –global gulp” 5)Then check for the command “gulp deploy” if it… Continue reading Basic steps for the command “gulp deploy”