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.
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