Skip to content
Release: Australia · Updated: 2026-05-29 · Official documentation · View source

ServiceNow Studio supported file types using code search

Reference the file types that ServiceNow Studio supports when using code search to locate scripts and metadata across an instance.

Code search in ServiceNow Studio uses the default code search group. The following table lists the file types supported by the default ServiceNow Studio code search.

Tip: To expand the list of supported file types, an administrator can create a new code search group that includes additional file types. For more information, see Expand code search tables.

Note: File types must extend the sys_metadata table to be searchable in code search. Other file types, such as scheduled items (sys_trigger records), are not searchable in ServiceNow Studio.

File typeCode search table nameDescription
Access controlsys\_security\_aclDetermines whether access is granted for a specified operation to a specific entity, such as: - Type of entity being secured - Operation being secured - Unique identifier describing the object
Business rulessys\_scriptCustomize system behavior. - Business Rules run when a database action occurs \(query, insert, update, or delete\). - The script can run: - before or after the database action is performed \(runs as part of the database operation\). - asynchronously \(at some point after the database operation\). - on display \(when displaying the data in a form\).
Client scriptssys\_script\_clientChange the appearance of forms and display fields based on entered values or other custom display options. - onLoad: The client script runs when the form or page loads. - onChange: The client script runs when a specific field changes and also when the form or page loads. - onSubmit: The client script runs when the form is submitted. Client scripts can also be called by other scripts or modules, including UI policies.
Email templatessysevent\_email\_templateCreate reusable content for the subject line and message body of email notifications.
Inbound email actionssysevent\_in\_email\_actionScript how the system responds to inbound emails.
Map pagescmn\_map\_pageDisplay ServiceNow data graphically on a Google map page based on location data that you provide.
Map transformssys\_transform\_mapImport data by defining mapping relationships between tables. Transform maps: - Define mapping relationships between tables. - Can use business rules, other scripts, or other options to import data.
Notificationssysevent\_email\_actionDetermine how an application communicates with users and alerts them about important application-related events.
Processorssys\_processorProvide customizable URL endpoints that execute server-side JavaScript code and produce output such as TEXT or JSON.
Relationshipssys\_relationshipExtend tables, reference records in another table, create many-to-many relationships, and join tables in a database view.
Scheduled script executionssysauto\_scriptDefine automated, server-side script logic that executes at a specific time or on a recurring basis. Scheduled script executions are also referred to as scheduled jobs.
Script actionssysevent\_script\_actionContain scripts that run when an event occurs, for example: - Approval is canceled - Change is approved - Problem is assigned
Script includessys\_script\_includeContain reusable functions or classes that run only when called by other scripts, often business rules. Any server script that is complicated or reusable should be a Script Include, especially complicated business rules.
Schedule itemssys\_triggerContain the back-end data for the System scheduler, where scheduled jobs are created, queued up, and executed. Schedule items can execute scheduled jobs, business rules, inactivity monitors, service level agreement \(SLA\) calculations, metric events, upgrades, and more. Access schedule item records to troubleshoot scheduling.
Defining UI actionssys\_ui\_actionInclude the buttons, links, and context menu items on forms and lists. Configure UI actions to make the UI more interactive, customized, and specific to user activities.
UI macrossys\_ui\_macroContain discrete scripted components that administrators can add to the user interface. UI macros are typically controls that provide inputs or information not provided by existing field types. By default, the system provides UI macros for a variety of user interface elements.
UI pagessys\_ui\_pageCreate and display forms, dialogs, lists, and other UI components.
Using UI policiessys\_ui\_policyDefine the behavior and visibility of fields on a form. Fields can be one of the following:- Mandatory - Visible - Read only The following apply to usage: - UI policies are always attached to one table. - UI policies often have a condition that must be true for them to run.
UI scriptssys\_ui\_scriptStore client scripts for reuse. Run only when called from other scripts.
UI stylesys\_ui\_styleDeclare individual CSS styles for a field in a list or form.
Widgetssp\_widgetDescribe objects that contain content and can be added to or embedded in portal pages. Use the base system widgets provided with the Service Portal, clone and modify widgets, or develop custom widgets to fit your own needs.

Parent Topic:ServiceNow Studio reference