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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
SuiteTalk - How to read Setup >> Accounting >> Accounting Lists
I'm trying to read a list of payment terms so that I can build a Dictionary<string, long> in C#. These live under Setup >> Accounting >> Accounting Lists. I've fiddled with this for way too long. Is it possible? If so, where?
SalesOrder.terms = new RecordRef() { internalId = ??? }
I can get here, but I want the name (not internalId) so that I can match it to the terms in an external system. I only need to read this list one time and then I'll cache it in my SuiteTalk app. I'd like this to be dynamic, so that if a term is changed in NS I can use a fuzzy match to the terms in my external system. I can't do that if all I have is a list of internal IDs.
0