How to load demo data for installed applications<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } This article provides instructions for loading demo data for any application that has already been installed on a ServiceNow instance. Instructions Target role: Admin Log in to your ServiceNow instance with admin privileges.Go to System Definition > Scripts - Background.Copy and paste the following command in the Run script window:GlidePluginManager.loadDemoData('<application scope>');Replace <application scope> with your application scope name. For example, to load Vulnerability Response demo data run: GlidePluginManager.loadDemoData('sn_vul'); Select Run script in scope global to run the script. How to find the application scope Go to System Applications > Applications > Installed.In the search field, enter the name of your application and press Enter.In the search results, select the application record to open it.Find the Scope field in the top left corner of the application record.Copy the value in the Scope field. This is typically a short string like sn_vul or com.snc.incident.Use this scope value in the demo data loading script from the previous instructions.