Does anyone know of a way to get a list of all pos...
# suitescript
b
Does anyone know of a way to get a list of all possible record types (standard & custom) and all possible custom lists? I essentially want everything that shows in the List/Record dropdown when creating a new List/Record field.
b
only suitebuilder option:, make a new custom field that is a lift of
Record Type
or potentially
Scripted Record Type
b
SuiteBuilder? I haven’t used that before
I have a custom record, and I want to allow the user to pick one of those values from a custom field on the custom record. I want to dynamically create the field through a user event script and add the options, but I just don’t know how to get the information in the first place.
b
you have already used SuiteBuilder
that said, you want to put the
Record Type
custom field on a custom record, create that record in suitescript using dynamic mode, then get the select options of your custom field
b
I know how to do that already. I don’t think I’ve clarified enough. The list I want is what’s displayed in the screenshot.
b
that list/record field has select options with internal ids
use the internal id of the select option as the source for your custom field
b
It sounds like you’re telling me how to display the options of another list/record field, but I don’t want to do that.
I want the options of my custom list/record field to be the list of all record types and custom lists.
b
find the internal id of the
Record Type
List/Record option
use that internal id as the source
b
The source where?
Never mind. I had a light bulb moment. I understand now. Thanks for your help.