Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Read Inventory Details in Transaction Item Fulfill or Invoice
Hi Guys,
I tried to get Invoice record via web services,. It success, i can read Body & Item list
but in Item List -> inventory detail, the value is null.
Any way I can read data (lotnumber, bin) from inventory detail in transaction ?
I'm using c#
below sample from my code
SearchResult res;
TransactionSearch tranSearch = new TransactionSearch();
TransactionSearchBasic tranBasic = new TransactionSearchBasic();
TransactionSearchAdvanced transAdv = new TransactionSearchAdvanced();
#region netsuite preference
Preferences preference = new Preferences();
preference.warningAsErrorSpecified = true;
preference.warningAsError = false;
_service.preferences = preference;
SearchPreferences searchPreferences = new SearchPreferences();
searchPreferences.pageSize = 10;
searchPreferences.pageSizeSpecified = true;
searchPreferences.bodyFieldsOnly = false;
_service.searchPreferences = searchPreferences;
#endregion
#region tranType = Invoice