To change the number of products in plp in site builder sites ,we can change it editing the layout in the netsuite account. We can s change the number of rows, and columns applied . We can also display numbered page navigation links and links for sorting items on the page. using the layout. Steps… Continue reading Change the number of products in PLP
Month: May 2021
Tool for Token generation Netsuite Webservice SOAP
https://tstdrv2096915.app.netsuite.com/core/media/media.nl?id=43916&c=TSTDRV2096915&h=202f8e5fbf7051167b6e&_xt=.html This is a simple HTML file help us to overcome the pain point of header Generation for unit testing. Fill the requested form elements and click on the Generate button to create the token header for SOAP request
Remove Duplicates from an array
Remove Duplicates from an array
Attach web leads to existing customer in Netsuite
Attach web leads to existing customer in Netsuite
Daily Currency Exchange Rates – Manual Update
Daily Currency Exchange Rates
Implementing the Naive-Bayes Machine learning Model
It is a classification technique based on Bayes’ theorem with an assumption of independence between predictors. A Naive Bayes classifier assumes that the presence of a particular feature in a class is unrelated to the presence of any other feature. Naive Bayesian model is easy to build and particularly useful for very large data sets.… Continue reading Implementing the Naive-Bayes Machine learning Model
Random forest classification algorithm in machine learning
Introduction Random forest is a supervised learning algorithm which is used for both classification as well as regression. But however, it is mainly used for classification problems. As we know that a forest is made up of trees and more trees means more robust forest. Similarly, random forest algorithm creates decision trees on data samples… Continue reading Random forest classification algorithm in machine learning
Get the thumbnail of parent categories of an item in PDP
Get the parent category details using the method getItemInfo() in the entry point file. var item = pdp.getItemInfo(); Fetch the category model in the view file.Pass the url of the parent category to the Category Model and get the thumbnail. this.ParentCategories= item.commercecategory.categories; _.each(this.ParentCategories, function(pc){ pc.url=pc.urls[0]; var categoriesFetch = new CategoriesModel().fetch({ data: { fullurl: pc.urls[0] }… Continue reading Get the thumbnail of parent categories of an item in PDP
Display Item fulfillment shipped status date in the saved search result
Formula (Date): case when {systemnotes.newvalue} = ‘Shipped’ then {systemnotes.date} else NULL end
DECISION TREE CLASSIFICATION ALGORITHM IN MACHINE LEARNING
INDRODUCTION Decision Tree is a Supervised learning technique that can be used for both classification and Regression problems, but mostly it is preferred for solving Classification problems. It is a tree-structured classifier, where internal nodes represent the features of a dataset, branches represent the decision rules and each leaf node represents the outcome. Why use… Continue reading DECISION TREE CLASSIFICATION ALGORITHM IN MACHINE LEARNING