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!
Regarding setting item option - Urgent
Hi,
Can I select an empty option from a list box if I dont know the internal id of a list option? my code fails if I do something like this:
SelectCustomFieldRef[] scfr = new SelectCustomFieldRef[1];
scfr[0] = new SelectCustomFieldRef();
scfr[0].setInternalId("abc");
ListOrRecordRef lorr = new ListOrRecordRef();
lorr.setInternalId(""); //I dont know the internal id of the options.
scfr[0].setValue(lorr);
Thanks!
0