Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Define and build the data model

After planning is complete, define and build the data model. Create one or more tables with fields, load the table with demo data, and verify access controls to the data.

Agentic AI

Create applications with help from agentic AI. For more information, see Agentic development on the ServiceNow AI Platform.

Create an application

Create or open an application record.

  • Create: If creating an application directly, use ServiceNow Studio to create the application.
  • Open: If developers do not have the admin role, the ServiceNow System Administrator needs to create the application and grant developers a delegated development role. Developers then use ServiceNow Studio to open the application for editing.

Note: The application scope and table name are sometimes referred to as the internal names for these objects and cannot be changed once they are created. However, the application name and table label can be changed. Application users see the internal names in the URL only. If possible, internal names should always be consistent with what the user sees.

  • Build the data model
    Create tables and fields on the tables to support the application’s data model.
  • Secure data
    Data security is one of the most important and overlooked aspects of creating an application. ServiceNow automatically configures access control for a new or selected role during the table creation process. Only users with the role can access the table to read, create, write, and delete.
  • Manage data
    With the data model (tables and fields) created and security set up, add data into the application’s table(s).

Parent Topic:Build your application