Anyone know if it's possible to query custom field...
# suitescript
a
Anyone know if it's possible to query custom fields, specifically transaction option columns? Trying to get access to the name of the option via its id
b
you may want to try loading the transaction its on to get its label via Column.label
t
@adambaruh Another option would be to use the query module and do something like this:
SELECT Name FROM CustomField WHERE InternalID = 12
a
I need to be able to do this via suitescript
b