SQL Tables and Permissions

The table below lists nearly 800 NetSuite tables that are available for use with SuiteQL, and the permissions that are needed to access them.  Table ID  Table Name  Permission Needed  account  Account  Lists – Accounts  accountingbook  Accounting Book  Setup – Accounting Book  accountingbooksubsidiaries  Subsidiaries  Setup – Accounting Book  accountingbooksubsidiarymap  Subsidiary  Setup – Accounting Book  accountingcontext  Accounting Context … Continue reading SQL Tables and Permissions

Git Ignore

The types of files you should consider adding to a .gitignore file are any files that do not need to get committed.You may not want to commit them for security reasons or because they are local to you and therefore unnecessary for other developers working on the same project as you. like Folders generated by… Continue reading Git Ignore

Git Graph – VS Code

Extension Id on VS Code: mhutchie.git-graph After Login to the VS code via git hub you can us the help of the extension GIT GRAPH. One of the most important benefits to describe and visualize the history of changes in a project. From where the branch is created to where the branch is merged, author… Continue reading Git Graph – VS Code

Pack Station Mobile App has been enhanced and renamed to NetSuite Ship Central.

NetSuite Ship Central enables order fulfillment processing in your location using a tablet or kiosk device. It supports multilevel packing that lets you pack items into cartons, then transfer packed cartons onto pallets. After you complete your packing, you can process the packed items for shipping. What are the capabilities included in NetSuite Ship Central?NetSuite… Continue reading Pack Station Mobile App has been enhanced and renamed to NetSuite Ship Central.

Finding Text Similarity using Python

Cosine similarity is a measure of similarity between two non-zero vectors of an inner product space that measures the cosine of the angle between them. Similarity = (A.B) / (||A||.||B||) where A and B are vectors. nltk.tokenize: It is used for tokenization. Tokenization is the process by which big quantity of text is divided into… Continue reading Finding Text Similarity using Python

Basic Libraries Required for Python programming:

1. Pandas: Pandas is a high-level data manipulation tool developed by Wes McKinney. It is built on the Numpy package and its key data structure is called the DataFrame. DataFrames allow you to store and manipulate tabular data in rows of observations and columns of variables. 2.Numpy NumPy is the fundamental package for scientific computing… Continue reading Basic Libraries Required for Python programming:

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

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’)