-
Netsuite 2025.1 version update seems to have broken my suitescript 1.0 suitelet
Hello, since the 2025.1 version update, a suitelet that has been working for years, written in suitescript 1.0 no longer works unless the client is logged into their netsuite account. The deployment is marked as "available without login" and used to work fine if nobody was logged in, but it is no longer working. It works…
-
When will NetSuite deprecate SuiteScript 1.0?
Our 2024 NetSuite health check determined we are using SuiteScript 1.0 and it's best practice to switch to SuiteScript 2.0. We got an estimate it will take over 2500 hours to update. Does anyone know when NetSuite deprecate SuiteScript 1.0? Thanks
-
Prevent Saving Duplicate Contact Email Addresses to Customer Records via SuiteScript
Hello! We'd like to disallow the creation of new contacts if an existing contact has the same email address. I found 2 SuiteAnswers articles that have code that will accomplish that. Prevent Saving Duplicate Contact Email Addresses to Customer Records via SuiteScript:…
-
Suite Script - Learning Pass LCS - Demo Account - Select 1.0 Script Type Issue
Issue - In demo video after uploading the script it automatically takes to the executing page, however the demo account of Larry Nelson, it is asking to select the script type. As they aren't teaching it in the demo account script type so it is getting confusing which script type to select. Could you please help which…
-
does Netsuite have any plans for deprecating SuiteScript 1.0?
Hey there, I was wondering, does Netsuite have any plans for deprecating SuiteScript 1.0? The reason I am asking is because I heard from some other Netsuite developers that in 2019, there was a plan to limit the creation of new Suitescript 1.0 scripts at a certain point, but it seems as if that might not actually have been…
-
How to Update Global Employee Permissions in NetSuite Using a Script?
Hello everyone, I'm facing a problem regarding the global permissions of employees in NetSuite and I was wondering if anyone could help me. I need to update the global permissions of employees in bulk, and I'm trying to do it through a script. However, I'm not able to find the correct way to perform this update. Does…
-
When will SuiteScript 1.0 API be out of service?
When will the Suitescript 1.0 API be decommissioned and it is required to be on the 2.0 version?
-
Why Client SuiteScript stopped after new release Release 2023.1?
Hi, We have noted that the below line is not working after latest netsuite update. nlapiSetCurrentLineItemValue('item', 'taxcode', 25407, true,true); Please can anyone advise !!! Best Regards
-
How to create a version 2.0 in SuiteScript?
I am starting out to write some basic script of "hello world" , I have script below however when i create script record it looks like it is creating it in version 1.0 is there a setting so that it says 2.0 instead of 1.0 in NS? ** *@NApiVersion 2.0 *@NScriptType ClientScript */ define(['N/ui/dialog'], function(dialog) {…
-
Creating a Child Record using a Scheduled Script.
I am building a Scheduled Script that takes a Phone Call record saved search, creates a CSV with Order Number and Phone Number. It then uses a calling service's API to upload and schedule the calls. I am using Suitescript 1.0 I also have a custom record called Call Attempt that has a field linked to the parent record. This…