To create a payment method follow the below steps. 1.Go to Setup > Accounting > Setup Tasks > Accounting Lists > New , then select the Payment Method Type from the drop-down list in the Filters section, and then click New. 2.Enter a name for the payment method in the Name field 3.Select the Type of the Payment Method from the drop-down list 4.Check the Display in… Continue reading Creating a Payment Method
Author: Dilma Joy
Update the condition for AddressLock
Create an entity field(checkbox) and add the condition if the checkbox enabled the customer not allowed to add/edit/delete the address.Also an error message should be displayed. solution: Create an entity field in netsuite. And using the id of entity field ,get values from backend. Extend the template file using the getcontext value.
Update the address module to Address Lock
Another quote is for “Address Lock” so if the customer has 30 addresses in the address book, he won’t be able to edit/delete/add the address. He can only select one of those addresses for shipping. The user should not be allowed to edit, create or delete when the customer has 30 addresses in the address… Continue reading Update the address module to Address Lock
Check An email is existing in netsuite at the time of registration
We have to check whether an email is existing in netsuite , when a user register in website at the time of registration.For that a suitelet is using.The return value from suitelet is using to check whether the email is existing or not. suitelet: suitescript model file:
How to save attached file to netsuite and sent the file as email attachment
To save user uploaded attachment to netsuite backend , First of all use “nlapiCreateFile” format. Using “nlapiCreateFile” command the same file is created in the netsuite ssp folder. And that particular file can be move to another folder by using “setFolder” command and the file id can be obtained by “nlapiSubmitFile” command . To send… Continue reading How to save attached file to netsuite and sent the file as email attachment
Add fields to shopping tab of an extension in configuration
To add fields in the shopping tab of an extension in website configuration,Edit the configuration folder of the corresponding extension. Add fields in the property of configuration.sample code is given below.
Add the navigations to Header links
To add navigations to the header link, 1.Commerce – website – configuration 2.Select website and domain 3.Goto layout – navigation.Give the required href and data hashtag values. Example
Update address book
Update the address book by webstore inputs. For that we have to extend “account.model” suite script file. And edit ” ModelsInit.customer.addAddress” function. // JJ.registerpage.customer.js // Load all your starter dependencies in backend for your extension here // —————- define(‘JJ.registerpage.customer’ , [ ‘JJ.registerpage.customer.ServiceController’, ‘Account.Model’, ‘SC.Model’, ‘Application’, ‘SC.Models.Init’, ‘Profile.Model’, ‘LiveOrder.Model’, ‘Address.Model’, ‘CreditCard.Model’, ‘SiteSettings.Model’, ‘underscore’, ‘Utils’ ] ,… Continue reading Update address book
Extension activation error
While activating themes or extensions in SCA, the activation status is continuously shows as “pending “. The issue exists even after 15 minutes of activation, then several methods can be done to resolve the issue.To solve the issue follow the steps described below.Try with each method given below. method 1: Go to Customization > List,… Continue reading Extension activation error
Register page redesign
The Register page functionality is to be developed.Extend the register page and develop it as a 2 page registration. Add the custom fields in the registration form and save it to the required customer fields in Netsuite. Steps: 1.Create custom entity field in netsuite. 2.extend “login_register_register.tpl” . 3. created an extension called “registerpage” and extended… Continue reading Register page redesign