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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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