1/168
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
g_form.getReference() function works in the Service Portal client scripts T/F
True
The scope of a custom application can be changed at any time by a ServiceNow developer? T/F
True
Which record is generated to indicate something has occured in ServiceNow?
Script Action
UI Action
Event record
Ecc Queue record
Event record
The basic strategy while creating a utils script include, identify the steps that does not belong
create a prototype object from the new class
script the function/s
identify the table
create a class
Identify the table
When configuring a module, what does override application menu roles configuration do?
Self service users can access the module even though they do not have roles.
Admin is given access to the module even if the acls would prevent the access
Users with the module role but without access to the application menu can access the module
Users with the module role but without access to the application menu can access the module
which of the following cannot be debugged using the field watcher?
Client scripts
Business rules
Script includes
Access controls
Script includes
utility is used to determine if field names in an Import Set match the field names on the target table when importing data into ServiceNow?
Transform Map
Mapping Assist
Auto Map Matching Fields
Auto Map Matching Fields
When a referenced field is added to a table, it stores the number or the display value of the referenced record in the database?
Yes, it stores the display value of the referenced record
No, the reference field contains sys_id of the referenced record
No, the reference field contains sys_id of the referenced record
The baseline behavior of a table in a privately scoped application is
The table and its data are not accessible using web services
All application scopes can read from the table
Only artifacts from the table's application can read from the table
Any business rule can read, write, update and delete from the table
All application scopes can read from the table
Team Dashboard provides a central place to manage all Team Development activities on your development instance T/F
True
Which of the below methods can be used to default the current date/time in a scoped app?
new GlideDateTime().getDisplayValue()
gs.nowDateTime();
new GlideDateTime().getDisplayValue()
Which of the following are correct for record producers? Select all that apply (3)
record producer forms can contain graphics and movies
record producers are used to insert and update records for a single table
UI Policies are applicable for record producer
Record producer variables map to table fields
record producer forms can contain graphics and movies
UI Policies are applicable for record producer
Record producer variables map to table fields
Script debugger can be used to debug client side scripts T/F
False
Team Development administrators can require that pushes undergo ___ before accepting pushes
code review
code changes
code review
Developers can create an _ to prevent pushes or pulls to particular instances in the team development hierarchy
Roles
exclusion policy
exclusion policy
A UI Policy has access to a scripts prior value? T/F
False
The form designer can be used to design list layouts T/F
False
All the records created using a record producer are inserted in the Requested Item(Screqitem) table T/F
False
A sequence of activities for automating processes in applications is achieved by
Business Rules
Workflow
UI Actions
Workflow
Which method is used to retrieve system property?
gs.getAppProperty()
gform.getAppProperty()
gs.getProperty()
gform.getProperty()
gs.getProperty()
Which of the following would not be good fit for an application to run on the Servicenow instance?
Facilities Management application
Billing & Cost Management application
Virtual Reality Gaming application
A meeting room scheduling application
Virtual Reality Gaming application
producer object is available in client scripts of a record producer T/F
False
Workflow can be used to automate UI Actions? T/F
False
Application files in a ServiceNow application are:
XML exports of an application export set
csv files containing data imported into an application
An xml export of the applications table recods
Artifacts comprising the Servicenow application
Artifacts comprising the Servicenow application
Which of the following objects does a before business rule have access to?
gliderecord
current
All of the above
All of the above
What additional information does Debug Business Rules(Details) show in comparison to Debug Business Rules?
The result of the business rules condition evaluation
Old and new values for field values changed by the business rule
Debug information from lists as well as forms
The time at which the Business rule executed including milliseconds
Old and new values for field values changed by the business rule
An ACL for a table may include a table.None Access control or a table.* access control but never both T/F
False
Are ACLs mandatory for privately scoped applications? T/F
False, but it is a best practice
Access to modules is controlled by
acls
assignment groups
roles
Roles
Question 30Correct
A new section can be added to a form using one of the field types in the form designer T/F
False, Sections are added by clicking the + symbol in the current section only.
What are embedded lists in ServiceNow?
Displays records in other tables that have relationships to the current record.
Allows for editing related lists without having to navigate away from the form. Changes are saved when the form is saved.
Allows for editing related lists without having to navigate away from the form. Changes are saved when the form is saved.
guser.hasRole('xfooappuser'), does this return true for the admin role? Y/N
Yes
ServiceNow is good for real-time data delivery and update from external sources T/F
False
What is a module in ServiceNow?
The functionality within an application menu such as opening a new record in the same or separate window
A separate application which is downloaded from the ServiceNow store
A group of forms with a defined purpose
The functionality within an application menu such as opening a new record in the same or separate window
What module line type is used to access an Application properties page?
Script(From Arguments)
Url(From Arguments)
HTML(From Arguments)
Single Record
Url(From Arguments)
All new tables created in ServiceNow have a default form and list layout T/F
True
Client Scripts and UI Policies can execute based on view T/F
True
Script actions can be triggered using business rules apart from events? T/F
False
While debugging security rules, what does the blue color code indicate
Access denied
Failed
Indicates the acl is already in the cache and does not need to be re-evaluated
Passed
Access granted
Indicates the acl is already in the cache and does not need to be re-evaluated
Any code changes done in a checked out workflow version are applied to all ServiceNow users triggering the workflow T/F
False
An application menu can have a maximum of 10 modules T/F
False, there can be as many as required by the application
Schema map is part of the form designer T/F
False
Which of the following statements does not apply when extending an existing table?
the parent's table's access controls are evaluated when determining access to the new table's records and fields
you must script and configure all required behavior
the new table inherits all of the fields from the parent
the new table inherits the functionality built into the parent table
the new table inherits the functionality built into the parent table
Default scope for all custom applications that uniquely identifies them
Private
Global
Private
Removing a field from the form designer deletes it from the database T/F
False
Removing a field from a form using the Form Designer deletes the field from the database table. T/F
False
An email notification can be triggered using the below options:
a) Trigger conditions
b) Events
c) Manually
a,b and c
Its mandatory to register an event in the event registry for it to be functional T/F
True
A table called x is created with 3 fields, x1, x2, x3 and has the below access controls configured:
x.None read access control for users with the admin and itil role
x.* read access control for users with the admin role
x.x3 read access control for users with itil role
which field or fields can a user with itil role read?
x1 and x3
x3 only
all fields except x3
all fields
x3 only
Is it a best practice to develop applications in Global Scope? Y/N
No
How is access to Application menus and modules controlled?
Application rules
roles
Client Scripts
access controls
roles
Protects applications by identifying and restricting access to application files and data
Application Scope
ACLs
Roles
Application scope
Purpose of source control integration
Allows application developers to integrate with GIT source control repository to save and manage multiple versions of a sub-production instance
Used a versioning system inside ServiceNow
Allows application developers to integrate with GIT source control repository to save and manage multiple versions of a sub-production instance
_ is similar to ACLs in that it allow you to restrict access to certain resources, but instead of restricting tables and records from users - they restrict application resources from other applications
Application roles
Application Permissions
Application Access Settings
Application Access Settings
Yes