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
Invoice Item
Running into a problem. I'm trying to see the invoice items on an invoice. I have pulled the invoice up in Netsuite and looked at the in through the UI and it definitely has items priced out on it. But when I access the invoice through C# and web services, it shows that the Invoice Item List is null. Any ideas?
Here is a sample of the code:
Record[] records = response.recordList;
for (int i = 0, j = (response.pageIndex - 1) * response.pageSize; i < records.Length; i++, j++)
{
Invoice PinnInvoice = (Invoice)records[i];
InvoiceItemList itemlist = PinnInvoice.itemList;
InvoiceItem[] items = itemlist.item;
0