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.
noob question
In php i got this code to refer to a custom field,
$bSelectField = new SelectCustomFieldRef();
$bSelectField->value = new ListOrRecordRef();
$bSelectField->value->internalId = 1;
$bSelectField->value->name = $sucursales;
$bSelectField->internalId = '242';
$bSelectField->scriptId = 'custentity25';
now, my question is, how can i translate this to javascript API for a suitelet.
0