To ensure that your workflow customization is configured efficiently, consider the following best practices: Execution Conditions and Context Logging Naming Execute as Admin Scheduled Workflows Tips for Approval Workflows Execution Order of Scripts and Workflows Execution Conditions and Context When configuring your workflow, be specific about the execution conditions and context. For example, only select… Continue reading Best Practices for Workflow Configuration
Author: Neema Joseph
AA-379 Billing Address Form-Test case documentation
Vertical sidebar menu-Magento
Using codazon extension installed in the admin panel we can create the vertical sidebar menu. Codazon-> Create new mega menu. Created vertical menu for pages brands, products, application. To edit the UI of vertical menu add HTML code to each category design part. The added code is given below: Catalog->categories->select category->design <referenceContainer name=”content”> <referenceBlock name=”catalog.compare.sidebar”… Continue reading Vertical sidebar menu-Magento
Download files facility installed / operational-Magento
By following the steps below we can attach PDF file to the M2 site Go to admin.>stores>configuration>MageWorx attachments>Manage attachment>Add New attachment. Give a name for the file to be attached. Specify the download limit, upload the file> select the customer group> click active. Now to add the file to the corresponding text in the website,… Continue reading Download files facility installed / operational-Magento
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
Adding facet field in SCA website
FACET OPTIONS WEBSITE SET UP Set up> suite commerce advanced>set up website> sca reference site example Search index subtab>facet fields Set the facet fields as in the image shown above. Now we need to add the facet field in the facet configuration Set up> suitecommerce advanced> configuration> select domain and website Shopping catalog subtab> facetsConfigure… Continue reading Adding facet field in SCA website
Backbone.Router
Web applications often provide linkable, bookmarkable, shareable URLs for important locations in the app. Until recently, hash fragments (#page) were used to provide these permalinks, but with the arrival of the History API, it’s now possible to use standard URLs (/page). Backbone.Router provides methods for routing client-side pages, and connecting them to actions and events. For browsers… Continue reading Backbone.Router
Backbone.Collection
Collections are ordered sets of models. You can bind “change” events to be notified when any model in the collection has been modified, listen for “add” and “remove” events, fetch the collection from the server, and use a full suite of Underscore.js methods. Any event that is triggered on a model in a collection will also be triggered on the collection directly, for convenience.… Continue reading Backbone.Collection
Backbone.Model
Models are the heart of any JavaScript application, containing the interactive data as well as a large part of the logic surrounding it: conversions, validations, computed properties, and access control. You extend Backbone.Model with your domain-specific methods, and Model provides a basic set of functionality for managing changes. The following is a contrived example, but it demonstrates defining a model… Continue reading Backbone.Model