How to display custom Address fields to the standard Address field

We can create custom fields in the Address sub Record by creating them as other record fields. But these custom fields will not show in the Standard Address field. To display the custom field in the standard Address field, we need to customize the corresponding address form. Navigate to Customization -> Forms ->Address FormsUnder the… Continue reading How to display custom Address fields to the standard Address field

Saved search formula to get transactions created before a specific time

The formula CASE WHEN ROUND((({today}-{datecreated})*1440),6) > 15 THEN 1 ELSE 0 END”, “equalto”, “1”] can be used to exclude the transactions which are created 15mins before the script execution. This formula becomes useful when we are running scripts in a schedule of 15 minutes of less where a record may have completed its creation before… Continue reading Saved search formula to get transactions created before a specific time

Extension Development Life Cycle

Stage Activity Gulp Command to Use Result 1 Create New ExtensionCreate a baseline extension — Get started by creating the files needed for a basic Hello World extension. Create New Extensiongulp extension:create Create New ExtensionExtension developer tools create a Workspace directory and a subdirectory that contains the files and initial module for your extension. This… Continue reading Extension Development Life Cycle

Updating Item options In Cart

For updating an item option in the cart when a customer adds any item to the cart, we can update it by using the function setItemOptions. Syntax: setItemOptions(itemlineid,optionMap) Updates the item options for a particular cart row. Parameters itemlineid [required] optionMap [required] {Array of Item Option ID value pairs} Example Extending Liveorder Model file to update the… Continue reading Updating Item options In Cart

Arranging Suitelet custom fields

We can arrange the custom fields in suitelet by following methods we can adjust row wise and column wise OUTSIDEABOVE OUTSIDEBELOW STARTROW MIDROW ENDROW STARCOL

Testing SCA Application’s Functionality

General features and functionality  Header  Check the top navigation  Check the logo and its navigation  Check the login and logout links  Check the search box functionality  Check the Mini cart link functionality  Breadcrumb trail (where relevant)  Footer  Check the Static content links  Check the Social media links   Main pages  Home page  Navigation to other… Continue reading Testing SCA Application’s Functionality