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.
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.
C# Webservice and custom List
Hi guys
I have a custom list of Registration names (about 100 names).
through web service am creating a record using these custom list Registration Name.
currently am hard coding the internal ID for the Registration Names. example:
listCF = new SelectCustomFieldRef();
listCF.internalId = "custrecord_so_tp_registration";
listRef = new ListOrRecordRef();
listRef.internalId = "209";
listCF.value = listRef;
cfArrayList.Add(listCF);
Is there any way to get the Internal ID of a List by passing the Name if yes please give me a code sample.
0