Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Error on adding Inventory Detail with Sales Order Items
Hi,
I'm currently tasked to populate Inventory Details for Sales Order Items upon saving the record or if possible, upon commiting the line item on creation. But I'm having trouble creating / editing subrecord for the items.
Here's a sample code I'm using for User Event - beforeSubmit and Client Script - validateLine (Sales Order Record):
1. nlapiSelectLineItem('item', 1); 2. oSubrecord = nlapiCreateCurrentLineItemSubrecord('item', 'inventorydetail'); 3. oSubrecord.selectLineItem('inventoryassignment', 1); 4. oSubrecord.setCurrentLineItemValue('inventoryassignment', 'issueinventorynumber', 'testserialnumber'); 5. oSubrecord.setCurrentLineItemValue('inventoryassignment', 'quantity', 2); 6. oSubrecord.commitLineItem('inventoryassignment'); 7. oSubrecord.commit(); 8. nlapiCommitLineItem('item'); But on line number 2, it throws this error:
code: "INVALID_RCRD_INITIALIZE" description: "You have entered an invalid default value for this record initialize operation." details: "You have entered an invalid default value for this record initialize operation." id: nullmessage: "You have entered an invalid default value for this record initialize operation." name: "INVALID_RCRD_INITIALIZE"
0