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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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