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.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
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