Current Active Support Desktop Chrome: (Current – 1) and Current Edge: (Current – 1) and Current Firefox: (Current – 1) and Current, ESR Internet Explorer: 9+ Safari: (Current – 1) and Current Opera: Current Mobile Stock browser on Android 4.0+[1] Safari on iOS 7+[1] [1]: Workarounds for Android Browser 4.0-4.3, iOS 7 & iOS 10… Continue reading jQuery Browser Support
Author: Rashmi Joshi
Most used payment gateways or payment processing platforms
1. Adyen A global enterprise-level payment processor used by companies like Netflix, Spotify, and Uber. Supports multi-currency, fraud detection, and omnichannel payments. Directly connects to Visa, Mastercard, and local payment methods. 2. AltaPay Specializes in e-commerce and omnichannel payments. Focused on European markets with support for various local payment methods. 3. CyberSource A Visa-owned payment… Continue reading Most used payment gateways or payment processing platforms
NetSuite’s Payment Processing Features
NetSuite provides a robust payment processing system that allows businesses to efficiently handle transactions, streamline billing, and provide seamless payment options for customers. These features enhance automation, security, and flexibility when managing payments in invoices, sales orders, and quotes. Key Payment Processing Features in NetSuite 1. Credit Card Payments ✅ Enables businesses to accept credit… Continue reading NetSuite’s Payment Processing Features
Generating Access Tokens and Creating an Integration Record in NetSuite
Step 1: Enable Token-Based Authentication (TBA) Before generating access tokens, ensure that Token-Based Authentication (TBA) is enabled in your NetSuite account. Navigate to Setup > Company > Enable Features. Click the SuiteCloud tab. Under the Manage Authentication section, check Token-Based Authentication. Click Save. Step 2: Create an Integration Record An integration record defines how an… Continue reading Generating Access Tokens and Creating an Integration Record in NetSuite
portlet.refresh() in NetSuite Client Scripts
/** * @NApiVersion 2.x * @NScriptType ClientScript */ define([‘N/ui/message’], function(message) { function refreshPortlet() { try { var portlet = window.nlapiGetField(‘custom_portlet_id’); // Replace with actual portlet ID if (portlet && portlet.refresh) { … Continue reading portlet.refresh() in NetSuite Client Scripts
Convert an Opportunity Using SuiteScript
/** * @NApiVersion 2.x * @NScriptType UserEventScript */ define([‘N/record’, ‘N/log’], function(record, log) { function afterSubmit(context) { if (context.type !== context.UserEventType.CREATE) return; try { var opportunityId = context.newRecord.id; … Continue reading Convert an Opportunity Using SuiteScript
Preferred List View Not working
When a center link is associated with a record type, NetSuite prioritizes the list view in the URL over any user-defined preference. Attempting to set a preferred list view or updating a saved search to make it the preferred view does not work in such case.
Permissions for a Custom Record Type Not Working.
You can use the Access Type list on a custom record type page to define a permissions model for a custom record type. The Access Type list includes the following options: Require Custom Record Entries Permission Use Permission List No Permission Required for Internal Roles For Require Custom Record Entries Permission and Use Permission List,… Continue reading Permissions for a Custom Record Type Not Working.
DomainKeys Identified Mail (DKIM)
DomainKeys Identified Mail (DKIM) is a method of digitally signing your email messages to allow authentication. To protect customers from unsolicited email, many ISPs check the domain key used in an email message to determine whether it is spam. When sending email from your NetSuite production account, using your own domain key helps enhance your… Continue reading DomainKeys Identified Mail (DKIM)
Script Context Type Values for each scripts
1. User Event Scripts (UE) Used to determine the action triggering the event: create: A record is being created. edit: A record is being edited. view: A record is being viewed. delete: A record is being deleted. xedit: A record is edited in inline edit mode. approve: A record is being approved. reject: A record… Continue reading Script Context Type Values for each scripts