Charan
10/15/2025, 6:59 PMheather
10/15/2025, 8:03 PMheather
10/16/2025, 12:00 PMjen
10/16/2025, 6:19 PMapaule
10/17/2025, 3:41 PMAithan
10/19/2025, 1:13 AMBenjamin Cookson
10/20/2025, 2:52 PMLucas
10/20/2025, 6:03 PMMichael Pope
10/20/2025, 10:21 PMN/https, is it possible to send a PATCH https request? I'm not seeing an option š. NVM looked... it looks like Netsuite does not support it š That's a real bummer.Mia Li
10/21/2025, 5:42 AMCraig
10/21/2025, 8:21 AMlet intBulkProcessId = objNewRecord.getValue({
fieldId: 'bulkprocsubmission'
});James Romito
10/21/2025, 4:20 PMSantiago
10/21/2025, 7:35 PMCraig
10/24/2025, 1:35 PMCraig
10/27/2025, 9:59 AMMemoization is a computer programming optimization technique that speeds up programs by storing the results of expensive function calls and returning the cached result when the same inputs occur again
I want to add a beforeSave() function to journal records so I can map/swap account IDs before a journal is saved. I have the mapping stored in a custom record; I'm looking at ways to make this as quick as possible.
Are N/cache reads quicker than searches or record loads? I could always store the mapping in the cache based on what's in the mapping table/record. If the mapping record changes, I can force the new values into the cache and expire the old values.M Ureddy17
10/28/2025, 7:38 AMNag
10/28/2025, 2:03 PMIsaac M
10/28/2025, 5:49 PMtexmc
10/28/2025, 5:59 PMNetsuite Tragic
10/28/2025, 9:27 PMCraig
10/29/2025, 2:44 PMFAgudelo
10/29/2025, 6:20 PMMike Robbins
10/31/2025, 2:14 PMbeforeLoad for a user event script, but doesn't work in a Suitelet? In the Suitelet window appears to be undefined.
form.addButton({
id: 'custpage_cancel',
label: 'Cancel',
functionName: "window.open('" + revenueArrangementUrl + "','_self' );"
});David Na
11/02/2025, 2:58 PM<https://9319243-sb1.extforms.netsuite.com/app/site/hosting/scriptlet.nl?script=1372&deploy=1&custscript_approvalmail_action=approve&custscript_approvalmail_recid=43283>
Even though the Suitelet is set as Available Without Login and the audience is Online Form User, clicking the link returns the error:
Invalid page parameter. Unable to view page.
Has anyone encountered this issue? What is the correct way to send parameters to a Suitelet via email so that non-logged-in users can perform actions?cweier
11/03/2025, 5:21 AMSlackbot
11/05/2025, 4:57 PMSim Greenbaum
11/05/2025, 9:14 PMlet raw = https.get({
url: url,
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${response_token.access_token}`,
},
});
log.debug("res", { raw, url });Chris
11/05/2025, 10:18 PMStephen Gosner
11/06/2025, 10:24 PMciRecord.setCurrentSublistValue({sublistId : 'line', fieldId : 'amount', value : 0.0});
I receive the following error message...
Value 0.0 outside of valid min/max range for field amount
For additional context, this is a rewrite of the original process and SS 1.0 that created these consolidated invoices via scheduled script, and was able to set the amount line item field to $0. Anyone have an idea of how I can get around this and set the value to $0. I'm able to edit the transaction after it has been created, through the UI and set the value to $0Luke Collins
11/11/2025, 3:15 AM