Requirement The client has customers outside of NetSuite and would like to send marketing emails to non-NetSuite customers. However, they also want to track which campaign customers originate from within NetSuite. Solution Marketing Email Customizations Prerequisite ยท Email templates will be pre-created in NetSuite, allowing users to select the appropriate template for… Continue reading Email campaign to Non NetSuite customers
Category: Products
All articles / code related to the products we develop in this company
Few Excel Shortcut keys
Here are some key shortcuts for Excel 365: General Shortcuts: Ctrl + C: Copy Ctrl + V: Paste Ctrl + Z: Undo Ctrl + Y: Redo F2: Edit the active cell Ctrl + A: Select all content in a worksheet Navigation Shortcuts: Arrow keys: Move one cell up, down, left, or right Ctrl + Arrow… Continue reading Few Excel Shortcut keys
Microsoft Surface
Microsoft created the Surface range of laptops, tablets, and interactive whiteboards. The majority of these devices run on the Windows operating system. They are intended to be high-end gadgets that serve as role models for producers of other Windows-compatible goods. It includes multiple hybrid tablet generations, 2-in-1 detachable notebooks, an all-in-one convertible desktop, an interactive… Continue reading Microsoft Surface
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.
Heroku : Cloud Platform
Heroku : Cloud Platform
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: