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
Please note that on Friday, March 20, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
How to change a cust field list 'back' to blank once it's been set to another value?
I can set the value of a custom list field with the following code.
Dim custField(1) As CustomFieldRef
Dim lstAppEnteredBy_CustFldRef As New SelectCustomFieldRef
Dim lstAppEnteredBy_RecRef As New ListOrRecordRef
lstAppEnteredBy_CustFldRef.internalId = "CUSTENTITY504"
lstAppEnteredBy_RecRef.internalId = dr("AppEnteredBy_ID").ToString
lstAppEnteredBy_RecRef.typeId = "45"
lstAppEnteredBy_CustFldRef.value = lstAppEnteredBy_RecRef
custField(1) = lstAppEnteredBy_CustFldRef
contactUpdate.customFieldList = custField
But what if the first time I set the value it was set in error. How can I use code to change it back to the default 'no item selected' or 'blank' state?
0