Bulk Approval of Sales Orders

We can approve the sales orders combined instead of approving by going to each sales order record. For approving the sales orders as bulk Go to Transactions> Sales> Approve Sales Orders Filter the sales orders based on the user’s preferences Check the box corresponding to the sales order that you want to approve and click… Continue reading Bulk Approval of Sales Orders

How to solve the issues that happens when custom fonts are uploaded to website.

There we have a full procedure for uploading the custom fonts in website.Using the link for refernce: https://jobinandjismi.in/add-a-custom-web-font/ Mainly we have several formats of fonts are available. example Different Font Formats 1.TrueType Fonts (TTF) TrueType is a font standard developed in the late 1980s 2.OpenType Fonts (OTF) 3.The Web Open Font Format (WOFF). 4.The Web… Continue reading How to solve the issues that happens when custom fonts are uploaded to website.

Search formula to find the length of a string which contains both char & int together

//Info: NFCC-31 We came across a situation in which we needed to determine the length of an entity record’s external id. The External id field’s value is a combination of characters and integers. By default, in a saved search, selecting Formula(Numeric) as criteria and then adding Function as length, Field, etc. results in LENGTH(char)externalid. The… Continue reading Search formula to find the length of a string which contains both char & int together

Add Image on template from Assets in SCA

We need to add image in theme->assets->img. Then follow the syntax form adding images from theme asset. <img class=”header-sidebar-menu-push-icon” src=‘{{getThemeAssetsPath “img/american.png”}}’ alt=”header_logo” title=”header_logo”>

Create Contact Under Customer

Create a function for form submission. Also passing the admin and sales email from the configuration record. Also creating contact based on the customer logged in to the website. Also sending emails for the corresponding contact.

Resolve Error: “Please specify a recipient in the e-mail recipients list” when using Save&Email Button on Saved Search

Scenario The user clicks the Save&Email button on the Saved Search and receives a pop-up message “Please specify a recipient in the e-mail recipients list“.  Resolve Error: “Please specify a recipient in the e-mail recipients list” when using Save&Email Button on Saved Search Solution Using the Save&Email button requires a recipient under the Specific Recipients tab. Recipients under the Recipients from Results… Continue reading Resolve Error: “Please specify a recipient in the e-mail recipients list” when using Save&Email Button on Saved Search

Calculate Number of Business Days between Two Dates

var startDate = “23-SEP-2022”;startDate = new Date(startDate.replace(/-/g, “/”));var endDate = “”, noOfDaysToAdd = 2, count = 0;while(count < noOfDaysToAdd){endDate = new Date(startDate.setDate(startDate.getDate() + 1));if(endDate.getDay() != 0 && endDate.getDay() != 6){count++;}}