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.
How to get list of internal id for any transaction form
NetSuiteService.RecordRef[] recordRefs = new NetSuiteService.RecordRef[nsKeys.Length]; for (int i = 0; i < nsKeys.Length; i++) { NetSuiteService.RecordRef recordRef = new NetSuiteService.RecordRef(); recordRef.internalId = nsKeys[i]; recordRefs[i] = recordRef; recordRefs[i].type = NetSuiteService.RecordType.invoice; recordRefs[i].typeSpecified = true; } NetSuiteService.ReadResponse[] re = service.getList(recordRefs);I'm using this. but I have to know a list of id that exist
How can I get a existing list of id
0