We can set the placeholder for fields in online case form by script. Template:
Author: Arjun S
How to create Custom case form in NetSuite and how to fetch fields in template
We can create Custom case form and also fetch custom case form values to template. Step 1: Setup -> Support -> Online Case Forms -> New . Step 2: Select the ‘Cutsom HTML Template’ from the list. Step 3: In ‘Cutsom HTML Template’ window, here we can set the Title and update the required fields… Continue reading How to create Custom case form in NetSuite and how to fetch fields in template
How to make three SMT area in a row
We can create three SMT area parallelly in a row.
Method for sending email using nlapiCreateTemplateRenderer().
This method can be used to send email template. Here we using nlapiLoadRecord() and nlapiCreateTemplateRenderer(). Below mentioned code for SuiteScript 1.0. In Email Template we using id (#firstname) for getting field values. <html><title></title><p id=”firstname”>Dear #firstname #lastname</p> <ul><li><strong>Email:</strong> #email</li><li><strong>Phone Number:</strong> #phone</li><li><strong>Company Name:</strong> #companyname</li><li><strong>Message:</strong> #message</li></ul></html>
How to pass lead customer record data to HTML file.
We can pass lead customer record data to HTML file. Here we using custid used for fetching the values from lead. Here we pass the data to the email template for sending mail.
What is Splide and how to enable splide autoplay?
Splide is a flexible, lightweight and accessible slider written in TypeScript. It helps you to create various kinds of sliders by just changing options, such as multiple slides, thumbnails, nested sliders, vertical direction and more.
How to solve error : ‘npm ERR! code EEXISt’ while npm install.
Try running ‘npm update -g npm‘ then run npm install again.If that doesn’t work then ‘npm cache clean’ helps. If that doesn’t work either you should consider removing the node_modules folder in your application and running npm i again. If these two methods not working, then uninstall the nvm and reinstall it.
How to create an image list in a custom record in NetSuite ?
We can create an custom image list in a custom record in NetSuite, here we can add required image seperately with name. Step 1: Goto Customization -> Lists,Record & Fields -> Record Types -> New In Custom Record Type window, here we set the Name, required details of the record and finally click the save… Continue reading How to create an image list in a custom record in NetSuite ?
Requirements to create new section ‘Customer Statement’ in the overview page using child view in extenion .
We can create new section (‘Customer Statement’) in Overview page by using childview in extension. Here we display the Print Statement from MyAccount section. Extension: Template: <div data-view=”Overview.statement” ></div>
Update favicon on the website through configuration record.
We can update the favicon on the website through configuration record. This method is one of the solution for when favicon is not visible on website. Step1: Created new folder ‘img’ in ‘Web Site Hosting Files > Live Hosting Files > SSP Applications > NetSuite Inc. – SCA 2020.1 > Development > favicon>img’. After that… Continue reading Update favicon on the website through configuration record.