Application Development Fundamentals Flashcards
What are the 6 philosophies of scoped applications?
- They should be able to be uninstalled
- Apps should not break the system
- Apps should not break other apps
- Apps should be self-contained
- Apps should have clearly defined dependencies
- Apps should only access what they need (least privilege)
True or False: Delegated development is available in the Global scope.
False. It is only available in scoped applications.
What features are available in both Scoped and Global applications?
- Source Control Integration
- Publish to App Repository
- Easy File Management
What are the elements of a namespace?
- Prefix characters “x_”
- Instance customer prefix (between 2 and 5 characters long)
- Application ID (up to 40 characters)
What happens if the namespace application ID is longer than 18 characters?
The system truncates the application name and appends it to the prefix.
What does the system use as the application ID by default?
The application name.
What are update sets used for? Essential for: 2, Useful for: 4
Essential for:
- Customizing baseline applications
- Customizing applications purchased from the store
Useful for:
- Keeping track of why a change was made
- Exporting work ahead of a clone
- Associating changes with SDLC artifacts (Stories, problems, bugs, enhancements etc.)
- Deploying an application if the app repo is unavailable
When do you use update sets vs. an application repository?
- When moving components containing functionality that is not a finalized product, between instances.
- Exporting work ahead of a clone
- Deploying an application if the app repo is unavailable
Which role has the ability to install/uninstall applications?
admin
Which ServiceNow IDE is targeted to low-code developers for continuing development on applications?
Application Engine Studio
Which ServiceNow IDE is targeted to pro-code developers working on custom applications in one centralized location?
ServiceNow Studio
What interface provides a step-by-step process to guide a user through the initial application development?
Guided Application Creator
What are 3 benefits of Studio IDE?
- All work can be done in one place.
- Commit, branch and merge to your Git repository with integrated source control.
- Provide individual developer access to specific application resources.
Which user experience templates are available in App Engine Studio? (5)
- Standard catalog item
- Record producer
- Workspace
- Portal
- Mobile experience
What are 3 benefits of the Guided Application Creator?
- Intuitive development interface
- Guides users through the application process
- Steps through basic application contents
What are 5 benefits of Integration Hub?
- Speed time to value
- Remove integration complexity
- Reduce integration costs
- Ignite IT productivity
- Build custom integrations
True or False: Not all applications within the ServiceNow store have been certified by ServiceNow.
False
What is the minimum version are all ServiceNow store apps built on?
Fuji
What steps does the Guided Application Creator take a user through? (7)
- Application Configurations
- User Roles
- User Experience
- Tables
- Field Inputs
- Table Configurations
- Next Steps
Within Guided Application Creator, what can you configuration for the base application properties?
- Name
- Description
- Scope
What options are available for configuring new tables within the Guided Application Creator?
- Upload spreadsheet
- Extend table
- Create table
What table configuration options are available within Guided Application Creator?
- Label
- Auto-numbering
- Manage access
When should you extend a table?
- A table exists with fields similar to what is needed
- The scripts and workflow for an existing table are useful for the application
- You want to use the approval workflow activities
When should you create a new table?
- No similar table exists
- Table will contain sample or seeded data that is used only for reference by the application
- You prefer to script the application behaviors yourself
What is Git?
A cloud-based source control management system that uses repositories and branching.
What information can be found in the status bar when linking to Git? (5)
- Application Name
- Application Version
- Branch Name
- Number of files/how many have been saved
- Whether the application is linked to a Git repository branch
Explain the steps involved in using source control.
- Pull a new copy of the code from the source repository
- Make your changes
- Commit changes
- Pull a fresh copy from the source repository
- Publish the application to the application repository
What is a branch?
Different versions of code within a repository at the same time.
What is the purpose of a branch?
- Allows development work to explore different solutions to a problem.
How do you prevent local changes from being lost when switching branches during development?
- Commit changes before switching your branch.
- Stash changes
What is a stash?
A locally stored set of changes that are stored on the device rather than pushed to a repository.
Which changes are captured when you create a stash?
ALL local changes that you’ve made that have not yet been committed.
What are the 4 steps involved in working with a stash?
- Create the stash
- Give it a name
- Switch to the branch you want to apply the stash to
- Select the stash to apply
What becomes of conflicts created when apply a stash?
They must be resolved before the stashed changes can be applied.
What are the steps for linking to source control using Git?
- In Git, create a project.
- Click “Clone” and select “Clone with HTTPS”
- Copy the URL
- In ServiceNow ensure the scope is correct.
- Connections and Credentials > Credentials
- Create a new “Basic Auth Credential” with your GitLab credentials.
- In ServiceNow Studio IDE, click “Link to source control” under the “Source Control” menu.
- Paste link from GitLab into the URL field.
- Select the GitLab credential you created
- Confirm branch is set to “master”
- Click “Link to Source Control”
What are the 4 sections of application ServiceNow Studio IDE?
- Header
- Application Explorer
- Content Frame
- Status Bar
Which of the following capabilities does ServiceNow Studio IDE have? (8)
* Form layout
* Navigation and tabbed environment
* Script intellectual property protection
* Code search
* Quick creation of scripts and files
* Push repository
* Push external source control
* Push to internal application repository
* Push deployment
* Merge branches
* Ability to add data
* Global application files management
* Previous number check
* Push to update set
* Testing of the application
- Navigation and tabbed environment
- Code search
- Quick creation of scripts and files
- Push to repository
- Push to external source control
- Push to internal application repository
- Push deployment
- Global application files management
What happens if you attempt to work on an out-of-scope artifact?
A warning is presented
True or False: An application’s scope is unchangable.
True
What are the 6 standard default fields all tables will have?
- Created
- Created by
- Updated
- Updated by
- Updates
- Sys ID
What is captured in the “Updates” field?
The number of updates for a particular record
What do you check if you want to allow a table to be extended from?
“Extensible”
When would the “Application Access” tab be evaluated?
Runtime
What is the purpose of the caller access field?
Track cross-scope application requests.
Which plug-in provides access to the “Caller Access” field within table configuration?
Restricted Caller Access”
Which two options are available for the “Accessible from” field of table configuration?
- All application scopes
- This scope only
When creating a table, what is the default name of the application? Of the module?
- The name of the table
- The plural of the table name
What does the default module of a table direct to?
A list of records within the table.
When configuring a module, what does the “Link type” dictate?
The type of page the module holds.
- ie List of records, New record, URL etc.
When creating a new UI policy, what do you need to first do before you can add actions?
Save the new record
Why does a UI policy have better performance than a client script?
The UI policy has a condition. It only runs when that action is true. Client scripts, however, do not have trigger conditions and will always evaluate.
Build conditions with ___ rather than ___ for better performance.
- Condition Builder
- Script
What 3 behaviors can be controlled via a UI Policy?
- Mandatory
- Visible
- Read only
What additional UI policy capabilities are “unlocked” with scripting?
- Create complex conditions
- Show/hide sections
- Remove/add/change/validate data in fields
- Full use of JavaScript methods
What must you do before you can access the advanced script of a UI policy?
- Save the record, if it is new
- Click the “Advanced view” related link (NOT the context menu)
What does the “Global” checkbox on a UI policy do?
When true, it applies to all views for that table.
What is the default value for the UI Policy “On load” field?
The course says “The onLoad checkbox deals with whether this UI policy should execute when the form is loaded. The default behavior for a UI policy is to execute when the user makes a manual change to a field on a form. If we do want this to be evaluated also when the form is loaded, we would need to check the onLoad checkbox”
This isn’t true at least from what I can tell in our instance. When I went to create a new UI policy, the onLoad field was checked. When I looked at its dictionary entry, its default value is true.
Would you need a UI policy or client script to keep track of a fields prior value?
Client script.
Which executes first: UI policies or client scripts?
Client scripts
What is the syntax for setting a display business rule scratchpad variable?
g_scratchpad.var1 = current.field1;
What is the syntax for accessing a scratchpad variable from a client-side script?
g_scratchpad.var1;
When does a display business rule execute?
Before the form is presented to the user, just after the data is read from the database.
When publishing an application, are you able to publish a version number that is in the past with respect to your current version?
Yes, you could go from 1.0.0 to 0.3.2
Can you publish version 1.0.0 and then later publish version 1.0.0 again?
No, version numbers must be unique.
What are the 3 categories of ACL’s?
- table.none
- table.field
- table.*
What access does table.none provide?
Access to all of the records/all of the data within the specified table.
What access does the table.* ACL provide?
Every other field on the table that does not have a field-specific rule on it already.
What is the first level of evaluation of ACL’s?
Table
What are the steps to check ACL’s?
Table-level check:
* table
* parentTable
* tableInInheritanceChain (wildcard)
Field-level check:
* table.field
* parentTable.field
* tableInInheritanceChain.field (wildcard.field)
* table.wildcard
* parentTable.wildcard
* tableInInheritanceChain.wildcard (wildcard.wildcard)
With ___ you can only watch one field, whereas with ___ you can watch multiple.
- Field watcher
- Debug security rules
How do you watch a particular field using debug security rules?
Click the blue bug icon.
What does a blue bug icon next to a field indicate vs. a black bug?
- Debug security rules
- Field watcher
Starting from left to right, what does each circle represent in the debug security rules log?
- Access Handler
- Role-based permission
- Conditional-based permission
- Script evaluation
What do blue circles indicate in the debug security rules?
The system is using a cached value.
What is recommended if you are looking to incorporate security into scripts, outside of ACL’s? Why?
Use server-side scripts, specifically the GlideSystem and GlideRecord methods. Server side scripts are more performant and more secure.
What happens if you have a script in one application scope that deletes records but the caller application does not have delete access?
What if the script also contains an insert and the caller application DOES have access?
- It would not throw errors nor update system logs because unauthorized access is simply skipped/ignored.
- The insert would proceed still.
Within the “Application Access” tab of table configuration, what does the “Allow configuration” checkbox control?
Whether it grants other application scopes permission to impact the configuration and behavior of the table you’re configuring.
Describe the 3 choices in the “Caller Access” field of the “Application Access” table configuration tab.
- None: Acts on the value of the Accessible from field
- Caller Restriction: Manually approved and tracked in the Restricted Caller Access table.
- Caller Tracking: Automatically approved. Tracked in the Restricted Caller Access table.
Describe the 3 protection policy choices.
- None: You can see the code and make changes to it.
- Read-only: You can see the code but cannot edit the code.
- Protected: You cannot see the code nor make changes to it.
Describe the 3 types of Flow triggers.
- Application: Some action in the application causes the flow to begin
- Schedule: The flow executes on a certain schedule
- Record: Triggered when a record is created and/or updated
True or False: When running a test within Flow Designer, any changes made by the flow will be rolled back.
False. The system does not back out the behaviors that were executed during the test.
True or False: Unlike Workflow, Flow Designer does not have the ability to run two branches concurrently and join paths when they complete.
True. This is not yet a capability of Flow Designer.
What is a spoke?
A predefined action, flow or integration for connecting or automating third party systems or processes within Flow Designer
What is the function of Integration Hub spokes?
Provide a connection between ServiceNow and a third-party resource.
What is the 4 step process for creating application properties?
- Create a System Property category
- Add Properties
- Order properties
- Create Properties Module
When creating the module that links to the system properties page, what is entered in the URL field?
system_properties_ui.do?sysparm_title=(Title from system property category form)&sysparm_category=(Name of the category for that form)
When scheduling script execution, what options appear within the “Run” field?
Options that set the “periodicity” of the job.
The options available in the “Time” field on the scheduled script execution are based upon what is selected in the ___ field.
Run
How do scheduled script executions run? (When?)
Asynchronously
What variables are available within scheduled script execution? What is not?
- Variables in the condition script
- Current/previous object
Where do you go to find jobs that are scheduled to run today?
The “System Scheduler” application
What are two modules under the Scheduled Jobs module?
- Today’s Scheduled Jobs
- Scheduled Jobs
Events are written to the ___ and processed by the ___.
- Event log
- Event queue
What is the only mandatory field when registering an event?
- Suffix (In a scoped app)
- Name (In Global)
What is the purpose of the weight field?
If there are multiple notifications triggered for the same record to the same recipients, to prevent spamming them, only the notification with the highest weight will be sent.
If the weight is 0, the notification is always sent.
What happens in the following scenario for notifications with the same trigger/recipients:
- Notification 1 has a weight of 10
- Notification 2 has a weight of 20
- Notification 3 has a weight of 0
- Notification 2 will be sent because it has the hightest weight.
- Notification 3 will be sent becasue its weight is 0, which is always sent.
What is inserted to an email when ${URI} is included in the HTML?
The word “link” with a link to whatever is being referenced.
What are Web Services?
Web-based method allowing applications to connect to other software applications over a network and exchange information.
What is the role of the web service consumer?
Generates an outbound REST message asking for information and providing necessary data
What is the role of the web service provider?
- Parses the request and any input variables
- Responds with an inbound message back to the consumer with resulting information.
Which document outlines the formatting, variables and access to be sent with the outbound request?
Web Service Descriptive Language document
What is the REST API Explorer?
A form guiding users through the process of creating endpoints and testing methods/variables
Within the REST API Explorer, what is the default API name that is selected?
Table API
What is the Table API used for?
Querying, creating, updating and deleting a table’s records.
Where can you modify the “Retrieve Records from a Table URL?”
- HTTPS value in the script stub code
- It cannot be modified in the API explorer
What is the purpose of the “Web Service Access Only” checkbox on the user record?
Allows the user account to leverage information from ServiceNow without giving them direct access to the platform.
What are the 6 steps of the Software Testing Lifecycle?
- Requirements Analysis
- Test Planning
- Test Case Development
- Environment Setup
- Test Execution
- Test Cycle Closure
What are the two roles used by ATF?
- Test Administrator
- Test Designer
Determine if an application is a good fit with ServiceNow:
What are 5 qualities make a process a good fit for ServiceNow?
- Data can be modeled in a relational database
- Extensive use of forms to interact with data
- Requires reporting capability
- Need workflow/flow to manage process
- Can extend existing functionality through JavaScript
Determine if an application is a good fit with ServiceNow:
What are 4 qualities make a process a bad fit for ServiceNow?
- Data is unstructured, such as audio or video
- Requires access to proprietary libraries that do not have an API
- Multi-player games or applications requiring graphics engines
- No process flow through application
Determine if an application is a good fit with ServiceNow:
Which are 3 examples of processes that would be a good fit for ServiceNow?
- Processes managed in spreadsheets and email
- Departmental apps built on aging incumbent platforms
- Applications with a request-fulfill pattern
Use Application Scope
What is the purpose of scope?
It protects an application from damage to or from another application.
Use Application Scope
True or False:
Studio allows the development of both scoped and global applications.
True
Use Application Scope
Which features do scoped and global applications share?
- Specific namespace
- Delegated Development
- Source Control Integration
- Publish to App Repository
- Easy File Management
- Source Control Integration
- Publish to App Repository
- Easy File Management
Use Application Scope
What is an artifact?
Application files comprising an application
Use Application Scope
In the baseline case, custom applications only have ___ access to each other’s table records.
Read. They cannot perform any other database operations.
Use Application Scope
What is the maximum number of characters for a scope name?
18
Use Application Scope
What must a scope name contain?
- The prefix: x_
- The 2-5 character app creator code property (instance customer prefix)
- The subsequent underscore
Use Application Scope
How many characters is the instance customer prefix?
2-5 characters
Use Application Scope
What is the maximum number of characters that can be contained in the application ID portion of the scope name?
40
Use Application Scope
How does one specify the instance customer prefix for the application scope name?
It is created by ServiceNow.
Use Application Scope
How is the application ID of an application scope name created?
It is set by the developer when they create the application.
Use Application Scope
What does the system use by default for the application ID portion of a scope name?
The application name
Developing within an application scope is recommended except when one of these 5 situations apply.
- Modifications to legacy customizations done in global
- Support for applications built before scoping or deployed to production in global
- Changes to base instance code that exists in global
- Access required to global application files not available to scoped applications
- Customizations with extensive dependencies in global where replication of global elements would introduce an excessive maintenance burden
Which of the following belong to Development and which belong to Deployment?
- Application of completed units of development to production
- Construction of the next unit of deployment
- Individuals and teams manage work streams
- Execution of change management process
Development:
- Construction of the next unit of deployment
- Individuals and teams manage work streams
Deployment
- Application of completed units of development to production
- Execution of a change management process
What are prerequisites for using the application repository?
Instance must have:
- a valid subscription
- a matching application scope
- network access
With regards to moving update sets, when must you do additional testing to ensure compatibility between versions?
When moving an update set from an instance created on a newer family release to an instance running on an older family release.
The ___ is a central repository for all scoped applications that are plublished.
Application repository
What does the master, or main, branch of your code represent?
A version of the application that is deployed to a production environment.
What does CI/CD stand for?
Continuous Integration/Continuous Delivery
In simple terms, explain CI/CD?
It is a modern software development practice in which incremental code changes are made frequently and reliably
Design and Implement a Data Model
What does the data model describe?
What data your application reads and writes to/from the database. It also describes how it is stored.
With regards to delegated development, an administrator can (5):
- Grant non-admin users the ability to develop scoped applications
- Specify which application file types the developer can access
- Grant the developer access to security records
- Grant the developer access to script fields
- Remove a user as a developer
Where do you manage permissions for developers within Studio?
File > Manage Developers
What permissions would a developer need to create advanced business rules?
- All File Types
- Allow Scripting
What is ServiceNow Studio?
A ServiceNow developer tool that provides an IDE-like interface to work on custom applications in one centralized location.
What is App Engine Studio?
A guided, low-code tool for developing rich web applications to store information, automate business processes and solve business problems.
What is a workspace?
Who is it intended for?
A suite of tools to:
- Help answer customer questions
- Resolve customer problems
For:
- Agents
- Case managers
- Help desk professionals
- Managers
Which ServiceNow developer tool enables you to build and deploy apps with fine-grained control, debug code, manage source control and publish apps from a central location?
ServiceNow Studio IDE
Which plugin must be enabled to use Guided Application Creator?
com.glide.sn-guided-app-creator
Which role is required to use Guided Application Creator?
sn_g_app_creator.app_creator
Where is Guided Application Creator accessible from?
- System Applications > My Company Applications > Create New
- Studio > Create Application
If you have accessed Guided Application Creator once before, how do you get the Welcome screen to present again?
sn_g_app_creator.has_viewed_gac
What browsers are not supported for GAC?
Edge and IE11 or older
What is the term used for Integration Hub integrations?
Spokes
What is Table Builder?
A tool for editing data tables that you’ve added to your application.
Which tool offers a drag-and-drop interface, “what you see is what you get” editor for creating and editing Agent Workspace landing pages?
UI Builder
How is UI builder accessed?
Workspace Experience > Administration > All Workspaces
What allows you to build connected digital workflow apps fast with a low-code platform?
Creator Workflows
What is process automation designer used for?
Building and managing multiple complex workflows easily with no-code playbooks and ServiceNow’s enterprise application development platform.
Which system property, if set to true, allows any developer/user with the sn_g_app_creator.app_creator role to create a global app in GAC?
sn_g_app_creator.allow_global
Who can create a global app if the sn_g_app_creator.allow_global system property is false?
Users with the sn_g_app_creator.global role.
How does one change the glide.appcreator.company.code system property?
It is set by ServiceNow and cannot be changed.
Which 2 UI types are available for selection in Guided Application Creator?
- Mobile
- Classic
How many UI’s can be set up for an application?
2, mobile and classic can both be set up
True or False:
Guided Application Creator can only use existing tables.
False. You can create new tables with Guided Application Creator.
List and describe the 3 table creation methods available within the Guided Application Creator.
- Upload a spreadsheet: Turn a spreadsheet into a custom table.
- Extend a table: Create a custom table that copies an existing table and add additional fields to the child table.
- Create a table: If you create a custom table, review the Data table guidelines for Guided Application Creator in docs.servicenow.com to ensure you are within the limits of your subscription and that your application performs as expected.
Should you create or extend a table in the following situation:
Table will contain sample or seeded data that is used only for reference by the application.
Create new
You (can/cannot) extend a system or database view table.
Cannot
Tables must have the ___ option selected in order to be extended.
Extensible
Which workflow approval activity is the only one to work with all tables? What must be true of the table to use the others?
- User Approval
- It must be extended from the task table
___ is software for:
* Tracking changes in any set of files
* Coordinating work among programmers collaboratively developing source code
Git
True or False:
The Source Control integration supports all custom applications, both global-scoped and private-scoped.
True
When is the default branch set? What is it set to?
- When the application is linked to source control.
- To sn_instances/-instance_name-
What system property allows administrators to change the branch value for source control?
glide.source_control.default_branch_name
Define “Commit” as it relates to source control.
Sending local changes to Git.
Define “Stash” as it relates to source control.
Storing local changes on your instance for later application.
Define “Merge” as it relates to source control.
Combining changes from different branches, or local vs. remote changes.
Define “Branch” as it relates to source control.
A copy of an apps files under the same account. Typically a version/release.
Define “Fork” as it relates to source control.
A copy of a repository under a new account (includes branches).
Define “Tag” as it relates to source control.
A point in time marker. Once set, it cannot be modified. Can be used to create a branch in ServiceNow.
Define “Publish” as it relates to source control.
The process of sending the current local application to the ServiceNow repository.
Define “Import” as it relates to source control.
Bringing an existing app in a Git repository into Now platform.
Define “Link” as it relates to source control.
Connecting a local ServiceNow application to a new Git repository.
Where do you go to create a stash?
Studio > Source Control > Stash Local Changes
How do you apply a stash to a branch?
- Source Control > Switch Branch
- Select the branch then select the “Switch Branch” button.
- Click “Close Dialog” button.
- Open Source Control > Manage Stashes
- Locate the stash to be applied and select the “Apply” link
- When the process is finished, select the “Close Dialog” button
- Open Source Control > Commit Changes
- Add a commit message and select the “Commit Changes” button.
True or False:
You can move globally scoped files between globally scoped applications.
True
In what 3 ways can you search for files within Global App File Management?
- Update set name
- Table
- File name
What are the steps to move files between global applications?
- Navigate to the application file in a list or form view.
- Locate the “Move to Application” UI action
- Select the global application file you want to move
- Select Move
What are the steps to add files from the global scope to a global application?
- Navigate to System Applications > My Company Applications > In Development
- To the right of the application name, click Edit in Studio
- Select File > Add Existing Files
- Find existing globally scoped application files available for moving into the current globally scoped application.
- Select “Continue”
- Select the files that you want to add, then select “Add”
Can you open an application in multiple studio windows?
No
Can you open multiple different applications in Studio within different tabs?
Yes
What are the steps for viewing existing business logic for a table?
- Open the list for the table. Use a module to open the list or, if you know the table name you can enter <table name>.list in the Application Navigator.
- Open the “Additional actions” context menu and select the “Configure” option.
- In the dialog, select the “All” button.
What are the steps for adding a table to an application within Studio?
- Select the “Create Application File” button
- Select Data Model > Table
- Configure the new table
- Select the “Submit” button
When configuring a table, how do you enable “document feeds?”
Mark “Live feed” as true.
How do you create a module from within Studio?
- Open the Application in ServiceNow Studio
- In the Application Explorer, locate Navigation > Modules
- Select the module of interest
Within the Next Experience, what icon do you click to select a different scope, domain or update set?
The globe icon.
Who is the domain scope picker available to?
Users with access to domain separation.
What is a cloud-based application?
- Computing resources and platform are managed by vendor.
- Developers configure and script to extend and add functionality.
- Users access through a web browser or their choice.
What is a cloud-based application (alt)?
- Computing resources
- Delivered via the internet
- Using an existing platform
- Providing access to data
What are 4 reasons to develop a custom application?
To extend service delivery and management to all enterprise departments
Replace outdated, inadequate, custom business applications and processes
# To extend service delivery and management to all enterprise departments
# To extend the value of ServiceNow
# To bring greater levels of automation and consolidation to enterprise services and their management
What are 5 qualities that make a process a good fit for ServiceNow?
Extensive use of forms to interact with data
Data can be modeled in a relational database
# Requires reporting capabilities
# Needs workflow/flow to manage processes
# Can extend existing functionality with JavaScript
What are 4 qualities that make a process a bad fit for ServiceNow?
Requires access to proprietary libraries that do not have an API
Data is unstructured, such as audio or video
# Multi-player games or applications requiring graphics engines
# No process flow through application
What are 3 qualities of applications that are a good fit to migrate to ServiceNow?
Process managed in spreadsheets and email
# Departmental apps built on aging, incumbent platforms
# Applications with a “request-fulfill” pattern
What access does a custom
scoped application have to other custom applications’ files?
Read access
When should an application repository be used?
When installing or updating an application on all company instances.
What are some drawbacks of update sets?
- Lots of manual steps (Preview, commit, work through collisions)
- Hard to branch out features that will be built in parallel
- Loading an update set developed on a newer family release into an instance on an older family release requires additional testing to determine compatability
What are potential consequences of committing an update set developed on a newer version to an instance running an older version?
- Updates may produce unexpected consequences.
- May cause outages or data loss
True or False: You can only see applications published by your own organization within the Application Repository.
True
What is the app repository?
- A place for a company to share applications ready for distribution between instances.
- Stores published applications for installation on any instance belonging to a company.
- Standardizes app versions installed on instances.
- Provides easy install/uninstall/update of apps
What are the steps in the scoped development process?
Analyze
# Design
# Develop
# Test
# Deploy
Apps on the ServiceNow ___ are certified by ServiceNow. Apps on the ServiceNow ___ are not vetted by ServiceNow.
- App Store
- Share Site
Which 6 items are under “Define Process” on the Application Development Checklist?
- Business problem
- Outcome
- Input(s)
- Output(s)
- Under personas/stakeholders
- Process steps
Which 3 items are under “Design and Build Data Model” on the Application Development Checklist?
- Tables
- Columns
- Relationships
Which checklist item is under “Design and Create User Interface” on the Application Development Checklist?
Desktop/tablet
Which 2 checklist items are under “Apply Security” on the Application Development Checklist?
- Roles
- Access Control
Which 3 checklist items are under “Automate” on the Application Development Checklist?
- Flow designer
- Scheduled script execution
Which checklist item is under “Integrate” on the Application Development Checklist
Soap/REST/CSV/Microsoft Excel
Which checklist item is under “Enhance User Interface” on the Application Development Checklist?
Service Catalog
Which roles allow a user to manage catalog items and record producers?
- admin
- catalog_admin
Which API can be used to asynchronously load a UI script library?
ScriptLoader
Where can administrators manage development users and the application content they can access?
Studio
Via delegated development, for each application, developers can
- Grant non-admin users the ability to develop scoped applications
- Specify which application file types the developer can access
- Grant the developer access to security records
- Grant the developer access to script fields
- Remove a user as a developer
Where can you set delegated individual user or group developer permissions?
Studio > File > Manage Developers
Which permissions are required via delegated development in order to create business rules?
- All file types
- Allow scripting
____ ____ ____ allows an administrator to assign a non-admin user as a developer or deployment resource for an application.
Application-specific deployment permissions
____ ____ ____ allows an administrator to assign non-admin users the ability to install or upgrade all applications in a specific instance.
Instance-specific deployment user roles
How do you acquire App Engine Studio?
With an App Engine subscription or product packaged with one.
What is the ServiceNow Store?
Online marketplace for downloading and installing ServiceNow applications
What can be configured in the Guided Application Creator?
Application Configuration
- Name
- Description
- Scope
User Roles
- Existing
- Create New
User Experience
- Mobile
- Classic
Tables
- Existing
- Create New (Upload spreadsheet, create a table, extend a table)
Field Inputs
Table Configurations
- Label
- Auto-numbering
- Manage access
Next Steps
- Studio
- Flow Designer
- Set up another app
What conditions are required to allow a user to create a global application within the Guided Application Creator?
- If the sn_g_app_creator.allow.global system property is set to true, the user must have the sn_g_app_creator.app_creator role
- If the property is false, the user must have the admin or sn_g_app_creator.global role
What is typically the prefix of application artifacts within ServiceNow Studio IDE?
The scope value
Which two table types cannot be extended?
System and database view
If a table is in a scoped application and you are working within a different scope, what additional option must be selected to allow the table to be extended?
Allow configuration
True or False: A remote table can be extended from an existing table.
False
What can be configured if an extended table field needs a different default value than the base table field?
Dictionary override
Use a ____ to link a repository behind a firewall.
MID server
Define “Merge.”
Combining changes from different branches, or local vs remote changes
Define “Branch.”
A copy of an apps files under the same account, typically a version or release.
Define “Fork.”
A copy of a repository under a new account, includes branches.
Define “Tag.”
A point in time marker. Once set, it cannot be modified. Can be used to create a branch in ServiceNow.
Define “Publish.”
The process of sending the current local application to the ServiceNow repository.
Define “Import.”
Bringing an existing app in a Git repository to the Now platform.
Define “Link.”
Connecting a local ServiceNow application to a new Git repository.
What are the two purposes of a branch?
- Enables work on different versions of a repository to occur at one time.
- Allows creation of a branch to work on a new version of an existing application
How do you configure your instance to use the default branch of “master?”
Set the glide.source_control.default_branch_name property.
Which branch can a stash be applied to?
Changes made in a stash can be applied to any branch.
What is the Global App File Management plugin used for?
Adding, removing or moving global application files.
From the table record, how can you tell if a field was inherited from the parent table?
If the value in the table column is different from the table record you are viewing.
___ provides runtime protection for application tables against read, write, create and delete operations.
Application Access
How do you style a field in Studio?
- Create a new “Style”
- Configure the Table and Field name
- If configuring a choice list for a particular value, enter the value in the “Value” field.
- Enter the preferred CSS style commands in the “Style” field
- Select the Submit button.
How do you open Form Designer in Studio?
In Studio, open Forms & UI > Forms > form name
# If creating a new View, open any form for the same table and create a new View from within the form.
How do you open forms from the ServiceNow browser?
Open a table’s form.
# Open the Additional actions context menu and select Configure > Form Design
True or False: Views cannot be deleted within Form Designer
True
What is the purpose of Annotations within Form Designer?
Adds information, instructions or separators to a form.
How do you add annotations to a form within Form Designer?
Select the Field Types tab
# Drag the Annotation to the appropriate location on the form.
# Select the annotation type
# Enter a value for the Annotation Text.
# Select the save button
Can HTML tags be used in annotation text?
Yes
What are the 6 annotation types?
- Info Box Blue
- Info Box Red
- Line Separator
- Section Details
- Section Separator
- Text
How does one delete a view?
System UI > Forms
# Search for your table and view
# Open the view you’d like to delete
# Select the “Delete” button
# When prompted, confirm the deletion
Are client scripts or UI policies faster?
UI policies
Can UI Policy Actions be used to show/hide sections?
No, this must be configured by clicking “Run Scripts.”
Which configuration options are made available when the advanced view of a UI policy is enabled?
- Global checkbox
- View
- Reverse if false
- On load
- Inherit
- Script tab
The ___ option must be selected for the “Execute if false” script to run.
Reverse if false
What type of script is used to pre-populate fields with values and make other form appearance and content modifications?
onLoad() client scripts
What is the only type of client script, below, that allows the user to control the form while its executing?
- onChange
- onLoad
- onSubmit
onChange()
Which options are available for UI type in a client script?
- Desktop
- Mobile/Service Portal
- Both
Which view does a client script apply to if Global is checked but the view is not specified?
Default
How do you call scripting assistance to see the list of all available classes?
ctrl + space
Which APIs are inaccessible in the global scope? (8)
- GlideRecord
- Window
- Document
- $(Prototype library selector shortcut)
- jQuery
- $j (jQuery shortcut)
- $F (Sizzle form element value shortcut)
Which API’s are modified in the global scope? (3)
- GlideAjax
- GlideForm
- GlideDialogWindow
What can be used in place of GlideRecord in scoped applications?
GlideAjax
What system property can be modified to make inaccessible APIs accessible in a scoped application?
glide.script.block.client.globals
Which API inaccessible in a scoped application cannot be made accessible?
GlideRecord
Which of the following are Client Script capabilities?
- Execute on form load
- Execute on form save/submit/update
- Execute on form field value change
- Have access to a field’s prior value
- Execute on list field value change(s)
- Execute after client scripts
- Require scripting
- Execute on form load
- Execute on form save/submit/update
- Execute on form field value change
- Have access to a field’s prior value
- Execute on list field value change(s)
- Require scripting
Which of the following are UI Policy capabilities?
- Execute on form load
- Execute on form save/submit/update
- Execute on form field value change
- Have access to a field’s prior value
- Execute on list field value change(s)
- Execute after client scripts
- Require scripting
- Execute on form load
- Execute on form field value change
- Execute after client scripts
Which type of server-side script is triggered based on operation?
Access control
Which type of server-side script is triggered when a user clicks on a widget?
UI Actions
Is GlideUser a client-side or server-side API?
Client
Is GlideForm a client-side or server-side API?
Client
All property values in a display business rule must be passed as ___.
Strings
Display business rules pass data from the ___ to a ___ using the ___.
- server-side
- client-side
- g_scratchpad object
Is the g_scratchpad object accessible on the mobile platform?
No
How do you set a version number for an application?
Before publishing an application:
# In Studio, select the File menu
2. Select Publish
3. Add Dev notes
4. Select the submit button
What are the steps for installing an application from the repository?
Select the “Not Installed” tab
- System Applications > My Company Applications
- Select the “Not Installed” tab
- Locate the application of interest and select the “Install” button
What are the steps for updating an application in the repository?
Select the Installed tab
- System Applications > My Company Applications
- Select the “Installed” tab
- Locate the application of interest and select the Update button
True or False: Uninstalling an application removes it from the applicati
False. It is only removed from the instance and can be reinstalled at any time.
What can be controlled? (4)
- Application Menus
- Modules
- Records
- Fields
What happens when the “Override application menu roles” checkbox is set to True?
A user without permission to see the Application Menu will see it in addition to the speifically authorized module.
If ACL access to a row is denied but the field level ACL allows access, what does the user experience?
No field level rules can grant access
If ACL access to a row is allowed but the field is denied, what does the user experience?
The field is not visible
To easily exclude fields, (use/do not use) a * ACL.
use
To easily include fields, (use/do not use) a * ACL.
Do not
What is the general order of ACL evaluation? (2)
- Match the object against table ACL rules, most specific to most general
- Match the object against field ACL rules, most specific to most general
What is the order of evaluation for table level ACL’s?
- Table
- Parent table
- *
What is the order of evaluation for field level ACL’s?
- table.field
- parent table.field
- *.field
- parent table.*
- *
True or False: If an access control rule specifies more than one permission, then the user must meet all of them to gain access to the object and operation.
True
*
Regarding ACL configuration, access is allowed if the following conditions are true (4)
- The user has one of the required roles
- Condition field evaluates to true
- Script field returns true or sets the variable answer to true
- Other matching ACL rules for the object evaluate to true
Blank fields in Access Control equal (true/false)
True
What is a “very useful” GlideRecord method with regards to configuration of ACL’s?
isNewRecord()
The course does not explain why.
What are 3 useful GlideSystem methods with regards to configuration of ACl’s?
Protection policy can be applied to:
- UI actions
- Script includes