Solution for ‘Impossible to parse backend error – Response’.

We can solve the ‘Impossible to parse backend error – Response’ error by changing the manifest vendor name or changing the extension vendor name from record types. This error happening because of the vendor name is case sensitive. So we can use only same vendor name for all extensions. If we created new extension with… Continue reading Solution for ‘Impossible to parse backend error – Response’.

How to rotate arrow icon 180 degrees onclick.

We can create rotating icon on dropdown list, that activate when click on icon. Extension: _.extend(FacetsFacetedNavigationItemCategoryView.prototype, {                    template: jj_subcategory_plpsubcategory_tpl, events: _.extend(FacetsFacetedNavigationItemCategoryView.prototype.events, {                         ‘click .subdiv2’: ‘hide’,                   … Continue reading How to rotate arrow icon 180 degrees onclick.

Solution for the issue”The item images is not available on PLP,PDP pages”

when you first configuring netsuite account, will see that there are currently no product images associated with the item in the Web Store subtab, Associated Images sublist. As a result, the default “Image not available” placeholder is being displayed in the web store.Then, Navigate to Documents > Files > File Cabinet and click on the… Continue reading Solution for the issue”The item images is not available on PLP,PDP pages”

Sending email from extension. Using ‘nlapiSendEmail()’.

Create emailbody in SuiteScript, after that add the emailbody in nlapiSendEmail(). This is the syntax ‘nlapiSendEmail ( from , to , subject , body , cc , bcc , records , files )’. After that send the mail, if mail is not received at recipient, we can set some permissions in user. First take extension… Continue reading Sending email from extension. Using ‘nlapiSendEmail()’.