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
Cost for Assembly/Bill of Materials.
Hi All,
We are using webservice 2008.2 inorder to download all types of sku's that are created in netsuite.For all item types we could get the purchase price using webservices as
InventoryItem InvItem = (InventoryItem)response.recordList[0];
InvItem.cost.ToString() // we get purchase price .
but in case of Assembly/Bill of Materials we never found cost instead we could see rate in webservices ,and this particular field is not available in UI.
SerializedAssemblyItem SerialzedAssmItem = (SerializedAssemblyItem)response.recordList[0];
SerialzedAssmItem.rate //This field is not present in UI.
Can anyone help us ,as this is an urgent requirement in order to generate invoice for this item types..
0