Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
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.