Adding facet field in SCA website

FACET OPTIONS WEBSITE SET UP Set up> suite commerce advanced>set up website> sca reference site example Search index subtab>facet  fields Set the facet fields as in the image shown above. Now we need to add the facet field in the facet configuration Set up> suitecommerce advanced> configuration> select domain and website Shopping catalog subtab> facetsConfigure… Continue reading Adding facet field in SCA website

Cron job in django

SET UP installation:   using the following command pip install django-crontab add it to installed apps in django settings.py: INSTALLED_APPS = ( ‘django_crontab’, … ) now create a new method that should be executed by cron every 5 minutes, f.e. in myapp/cron.py: now add this to your settings.py: CRONJOBS = (‘*/5 * * * *’, ‘myapp.cron.cron’)  

Custom reminder portlet

A portlet script for a custom reminder in the employee center role. The portlet script will only be available as suiteApp in the employee center. So when it set up by personalizing the dashboard the portlet must be select from suiteApp. /** *@NApiVersion 2.x *@NScriptType Portlet */ /******************************************************************************* * CLIENTNAME:AQUALIS * AQ-386 * * **************************************************************************… Continue reading Custom reminder portlet

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