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!
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
Loop through line items in an opportunity to find ID
Hi,
I have an opportunity and I am using some simple code to loop through the line items. My goal is to get the identifing number for each line item.
iItemCount = nlapiGetLineItemCount('item'); for ( i = 1; i <= iItemCount; i++) { nlapiLogExecution( 'Audit', 'internalid = ', nlapiGetLineItemValue('item', 'internalid', i)); nlapiLogExecution( 'Audit', 'amount = ', nlapiGetLineItemValue('item', 'amount', i)); nlapiLogExecution( 'Audit', 'description = ', nlapiGetLineItemValue('item', 'description', i)); }Code works fine but i need to know the the tag is for the internal id as it is not being retrieved - anyone know what the proper tag is? internalid is not working
Thanks
0