With the 2023.2 release, the Out of Stock error message lists the exact number of items that are not in stock so that the user can go back and edit the order on the SuiteCommerce and SuiteCommerce Advanced websites.
Author: Anju Babu
Tax-exempt certificate
A tax-exempt certificate is a document that declares a business, organization, or individual is not subject to the usual taxation system. The certificate can be used to purchase normally taxable goods or services tax-free or to deduct tax at a lower or nil rate3. The certificate must be presented to the seller or the IRS… Continue reading Tax-exempt certificate
Home Delivery & Ground
The “FedEx Ground@” available only if the corresponding address is non-residential.If the customer tries to add a residential address to the shipping address then we couldn’t able to find the “FedEx Ground@” shipping method in that address. if we need to find the “FedEx Ground@” only if the customer changes the address into non-residential and… Continue reading Home Delivery & Ground
Date format conversion in Excel
From the format “dd.mm.yyyy” to “yyyy-mm-dd”, please use the following formula and change A2 with the cell name in your file. =RIGHT(A2,4) & “-” & MID(A2,4,2) & “-” & LEFT(A2,2) where RIGHT(A2,4) is to get the year, MID(A2,4,2) is to get the month, and LEFT(A2,2) is to get the day. If you want to convert… Continue reading Date format conversion in Excel
Function to find the parent from an array of objects
Function to find the parent from an array of objects
Display One Text at a Time
Display One Text at a Time
Text over image without using background-image
Text over image without using background-image
Create a file from a URL to assign a file input
Extension Error resolving
We can resolve the issue by Installing new version of the extension manager.
Resetting forms
$({form id}).reset() form id should be the id of the form that we need to reset. Example: reset will be done by $(‘#formid’).reset();