- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2022 11:04 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2022 11:40 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2022 11:40 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-08-2022 05:22 PM
Hi Anmol,
Check the link provided by Jaspal to find a list of variable types that can be selected in Service Catalog types.
To get a list of all field types that can be used in a table, execute the following script. Some type such as days_of_week are hidden type that are not listed in ServiceCatalog but can be used in a form.
FYR,
http://rubenferrero.com/servicenow/hidden-field-types-days-of-week/
Following script will list all types used in ServiceNow.
var gr = new GlideAggregate("sys_dictionary");
gr.addAggregate("COUNT");
gr.groupBy("internal_type");
gr.query();
var typeList = [];
while (gr.next()) {
typeList.push(gr.getValue("internal_type").toString());
}
typeList.sort();
var typeNames = typeList.join('\n');
gs.info(typeNames);