Data Center-Specific Commerce Domains

All NetSuite accounts and NetSuite-hosted commerce websites will be moved to new data centers over this year(2022).  With this change, they will stop supporting data center-specific domains such as “shopping..netsuite.com” or “checkout..netsuite.com” (In these examples, the asterisk represents the data center identifier). You must replace these data center-specific domains with account-specific domains, such as <accountID>.shop.netsuite.com… Continue reading Data Center-Specific Commerce Domains

Group tax code of item lines in Advanced PDF

Show the tax total based on tax codes in the item line. Each tax code should be grouped and tax amounts should be added. <#assign seen_style = []><#list record.item as item> <#assign tax1amt=0/> <#assign groupId = item.taxcode> <#if seen_style?seq_contains(groupId) && groupId != “”> <#else> <#assign seen_style = seen_style + [groupId]/> <#list record.item as item2> <#if… Continue reading Group tax code of item lines in Advanced PDF

Removing the Currency Symbol in Advanced PDF

To remove the currency symbol for the fields in advanced PDF template : Add the below function in the <macrolist> : <#function toCurrency value showSymbol=false><#if value?is_number> <#local retval = 0> <#local retval = value?string[“#,##0.00”]><#return retval> <#else> <#return value></#if></#function> Call it as : ${toCurrency(item.grossamt)}

“Enter Sales Order” link missing in Customer Center login

While logging into the Customer Center ,using the Standard Customer Center role ,there is no link to Enter Sales Order. Solution: By default, the Customer Center has Permissions > Transactions > Sales Order = Edit. This lets users Create or Edit an existing Sales Order that they have created.  1. Navigate to the Item that you want… Continue reading “Enter Sales Order” link missing in Customer Center login