Migrating Open Accounts Receivable Balances into NetSuite

Migration of open accounts receivable Invoice without duplicating the GL impact Steps for migrating the Open AR Invoice are follows: Create a Non-Inventory for Sale item Create Open Customer Invoices Reverse the GL Impact with a Journal Entry Create a Non-Inventory for Sale Item For open AR invoices, we will use both a generic item… Continue reading Migrating Open Accounts Receivable Balances into NetSuite

Special badge functionality for Special item in Website.

Steps: 1.checking the special item is there for the items. 2.if the special box is checked then the item should display the on sale badge. 3.Using suitescript is created special checkbox .(custitem2) 4. In suitelet isSpecialItem() function check special price from there true or false and special price is passing to PLP page based on it PLP… Continue reading Special badge functionality for Special item in Website.

Requirement to display the Foreign Currency Amount without the Currency symbol in a Saved Transaction Search

Scenario: User wants to display the Amount (Foreign Currency) without the Currency Symbol in a Saved Transaction Search. Solution: Navigate to Lists > Search > Saved Searches > NewClick TransactionSearch Title: Enter TitleClick CriteriaClick StandardFilter: Add all necessary filtersClick ResultsClick ColumnsField:Select Formula (Currency)Formula: Set {fxamount}Custom Label: Enter Amount (Foreign Currency)Click Save & Run

Need to split the character in the field and display the same.

Senario: User need to show Customer ID and Customer Name as Separate fields in transaction saved search. Solution: Navigate to Reports > Saved Searches > All Saved Searches > New.Click Transaction.Enter the needed filters in the Criteria tab.Under the Results tab, enter the needed information and add the following:Formula (Text) | Formula: SUBSTR ({name}, 1,5)Formula… Continue reading Need to split the character in the field and display the same.

Saved Search/ List – Delete Multiple Records at Once

Step 1: Go to Lists > Relationships > Customers. This will pull up the Customer list page. Step 2: If Inline Editing preference is not enabled, click Edit beside the Show Inactive Once enabled, a green checkmark will appear as shown below. You will also notice a New column that will show up at the utmost… Continue reading Saved Search/ List – Delete Multiple Records at Once

Get System Notes content (Function)

Use the below code snippet to call any records system notes function(){//get one system note recordvar ss = search.create({ type: search.Type.SYSTEM_NOTE, columns: [‘date’, ‘recordtype’, ‘record’, ‘field’, ‘oldvalue’, ‘newvalue’], filters: [[‘role’, ‘is’, ‘3’]] //administrator }).run().getRange(0,1); return ss }

Show different placeholder text for mobile and desktop

Requirement is to make the placeholder text different for mobile as well as desktop. Example: The placeholder that need to show in the mobile device is “” and in the desktop need to be “”. For that first get the screen width in the JavaScript file and pass that value to ‘getcontext’ and then update… Continue reading Show different placeholder text for mobile and desktop

All You Need To Know About Magento 2 Multi Source Inventory

Multi Source Inventory (MSI) was introduced in Magento 2.3.0. This is actually a huge leap for the Magento community as it dramatically improves Inventory Management by allowing the merchants to control inventory for single or multiple sources and sales channels. SourcesThis is the primary element of the new inventory. A source is a place where… Continue reading All You Need To Know About Magento 2 Multi Source Inventory

Getting Visual Swatchs on Phtml file for products

Viewing the visual swatches for the simple products in PLP and PDP pages . This is custom functionility to make the simple product to config by addin the related products with same property but with different color,size and attributes. Here it is done with a object but always convert the object manager to a block… Continue reading Getting Visual Swatchs on Phtml file for products