Types of Bundles

Two types of bundles can be made available for installation in NetSuite accounts: A customization bundle is a group of custom objects that implement customized behavior in the NetSuite application. Customization bundles allow installation of application packages. Customization bundles can include objects such as custom forms, SuiteScripts, and website layouts. Preferences can be set for some types… Continue reading Types of Bundles

Receiving orders using RF-SMART

RF-SMART is an industry-leading SuiteApp that provides some of the most advanced real-time inventory management tools like cycle counting, Mobile Pick Pack Ship, and Work Center Reporting. Orders can be received and picked using RF-SMART. There are also other options available using RF-SMART as shown below. For receiving orders using RF-SMART navigate to RF-SMART>Client>client. Select… Continue reading Receiving orders using RF-SMART

N/cache Module

Use the N/cache module to enable temporary, short-term storage of data. Data is stored in the cache according to its time to live (ttl) specified in the Cache.put(options) method. You can use this module to build a cache to store and retrieve string values using a specific key. The N/cache module is supported by all server script… Continue reading N/cache Module

Proposal For Notification When Item Becomes Available To Ship.

Proposal Summary  This proposal outlines the scope of sending automated email notifications to CSRs and Logistics when an item becomes available to ship in sales orders either by inventory adjustment or by creating item receipts.  Requirement  Need to update the existing functionality that sends automatic emails when creating inventory adjustment or item receipt listing all… Continue reading Proposal For Notification When Item Becomes Available To Ship.

Adding scroll bar to dialog box

css code can be added to add scroll bar: body {  overflow-y: hidden; /* Hide vertical scrollbar */  overflow-x: hidden; /* Hide horizontal scrollbar */} we can also specify the height of the dialog box for which the scroll bar is added: body { overflow-y: scroll; display: block; height:150px;}