Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Suitescript: Assembly Build Error: "SSS_INVALID_SUBLIST_OPERATION" / Work order
Hi guys,
I am trying to create an Assembly Build by Suitescript, and I have a problem assigning data to the first line of the component.
I have tried:
"try {
var lineNum = rec.selectLine({ sublistId: 'component', line: 0 });
} catch (e) {
log.debug('ERROR select line', 'Component1 failed with error.' + e)
};"
or
"try {
rec.setCurrentSublistValue({
sublistId: 'component',
fieldId: 'quantity',
linenumber: 0,
value: data.component1Quantity,
ignoreFieldChange: true
});
} catch (e) {
log.debug('ERROR select line', 'Component1 failed with error.' + e)
};
I have same error message:
""type":"error.SuiteScriptError","name":"SSS_INVALID_SUBLIST_OPERATION","message":"You have attempted an invalid sublist or line item operation. You are either trying to access a field on a non-exist (more...)