Prerequisites for Importing Matrix Items

Before you can import matrix items, you must do the following: Ensure that the Matrix Items feature is enabled, at Setup > Company > Setup Tasks > Enable Features, on the Items & Inventory subtab. Set up a custom list and a custom item field for each matrix option, at Customization > Lists, Records, &… Continue reading Prerequisites for Importing Matrix Items

Setup Inventory for the items created using CSV import

Add the bin for every parent item using item import by updating item bin numbers for the corresponding parent item records external id. The template for item record is saved as coma delimited file and go to netsuite> setup> import/ export> import csv records Select import type as> items Record type as inventory item CSV… Continue reading Setup Inventory for the items created using CSV import

Get the thumbnail of parent categories of an item in PDP

Get the parent category details using the method getItemInfo() in the entry point file. var item = pdp.getItemInfo(); Fetch the category model in the view file.Pass the url of the parent category to the Category Model and get the thumbnail. this.ParentCategories= item.commercecategory.categories; _.each(this.ParentCategories, function(pc){ pc.url=pc.urls[0]; var categoriesFetch = new CategoriesModel().fetch({ data: { fullurl: pc.urls[0] }… Continue reading Get the thumbnail of parent categories of an item in PDP