Podcast
Questions and Answers
What is turned on by default when creating new application files in a scoped application?
What is turned on by default when creating new application files in a scoped application?
Which statement is NOT true regarding the Weight field in an Email Notification?
Which statement is NOT true regarding the Weight field in an Email Notification?
Which object is a Display Business Rule unable to access?
Which object is a Display Business Rule unable to access?
Regarding Email Notifications, what is the impact of a Weight field set to zero?
Regarding Email Notifications, what is the impact of a Weight field set to zero?
Signup and view all the answers
What determines the transmission of Email Notifications for the same record and recipients within ServiceNow?
What determines the transmission of Email Notifications for the same record and recipients within ServiceNow?
Signup and view all the answers
In the context of ServiceNow Email Notifications, what does a default Weight value of zero signify?
In the context of ServiceNow Email Notifications, what does a default Weight value of zero signify?
Signup and view all the answers
When is cross scope access automatically enabled in ServiceNow's scoped applications?
When is cross scope access automatically enabled in ServiceNow's scoped applications?
Signup and view all the answers
What determines whether a user has access to a record in ServiceNow?
What determines whether a user has access to a record in ServiceNow?
Signup and view all the answers
What signifies a workflow context in ServiceNow?
What signifies a workflow context in ServiceNow?
Signup and view all the answers
How can developers benefit from creating an Application Properties page?
How can developers benefit from creating an Application Properties page?
Signup and view all the answers
What is the primary function of restricted caller access records?
What is the primary function of restricted caller access records?
Signup and view all the answers
When creating a user for an ATF test, which step allows for the assignment of specific roles and groups?
When creating a user for an ATF test, which step allows for the assignment of specific roles and groups?
Signup and view all the answers
Which plugin activates the Guided Application Creator in ServiceNow?
Which plugin activates the Guided Application Creator in ServiceNow?
Signup and view all the answers
What types of external data sources can be utilized in a ServiceNow application?
What types of external data sources can be utilized in a ServiceNow application?
Signup and view all the answers
What impact does selecting an application from the Application Picker have on the Application Scope?
What impact does selecting an application from the Application Picker have on the Application Scope?
Signup and view all the answers
Which statement is true about the global application in ServiceNow?
Which statement is true about the global application in ServiceNow?
Signup and view all the answers
What does the provider's response indicate when there is no data to send back?
What does the provider's response indicate when there is no data to send back?
Signup and view all the answers
When evaluating Access Controls, how does ServiceNow prioritize the matches it searches for?
When evaluating Access Controls, how does ServiceNow prioritize the matches it searches for?
Signup and view all the answers
Which function should be used in a Business Rule to check if the currently logged in user has the 'admin' role?
Which function should be used in a Business Rule to check if the currently logged in user has the 'admin' role?
Signup and view all the answers
Which scenario might indicate that an application is NOT a good fit with ServiceNow?
Which scenario might indicate that an application is NOT a good fit with ServiceNow?
Signup and view all the answers
Which of the following statements is INCORRECT about Delegated Development in ServiceNow?
Which of the following statements is INCORRECT about Delegated Development in ServiceNow?
Signup and view all the answers
How does ServiceNow handle the search for Access Controls on fields and tables?
How does ServiceNow handle the search for Access Controls on fields and tables?
Signup and view all the answers
What must be considered when determining if an application fits within the ServiceNow environment?
What must be considered when determining if an application fits within the ServiceNow environment?
Signup and view all the answers
Which method indicates the current user's role check within Business Rules in ServiceNow?
Which method indicates the current user's role check within Business Rules in ServiceNow?
Signup and view all the answers
Which of these items must be manually scripted and configured when creating a new table that inherits from a parent table?
Which of these items must be manually scripted and configured when creating a new table that inherits from a parent table?
Signup and view all the answers
Which of the following cannot be debugged using the Field Watcher in ServiceNow?
Which of the following cannot be debugged using the Field Watcher in ServiceNow?
Signup and view all the answers
Which objects are accessible in Inbound Action scripts within ServiceNow?
Which objects are accessible in Inbound Action scripts within ServiceNow?
Signup and view all the answers
Which of the following is part of the client-side scripting API in ServiceNow?
Which of the following is part of the client-side scripting API in ServiceNow?
Signup and view all the answers
What is the primary purpose of using JavaScript for application development in ServiceNow?
What is the primary purpose of using JavaScript for application development in ServiceNow?
Signup and view all the answers
Which of these is not a valid way to use JavaScript within ServiceNow?
Which of these is not a valid way to use JavaScript within ServiceNow?
Signup and view all the answers
When configuring new functionality in ServiceNow, which of the following is not a direct result of using JavaScript?
When configuring new functionality in ServiceNow, which of the following is not a direct result of using JavaScript?
Signup and view all the answers
In the context of ServiceNow, why might an application developer prefer to use client scripts?
In the context of ServiceNow, why might an application developer prefer to use client scripts?
Signup and view all the answers
Study Notes
Scoped Application and Cross Scope Access
- Cross scope access is enabled by default for Tables in scoped applications.
Email Notification Weight Field
- The Weight field in Email Notifications does not default to zero.
- A Weight value of zero indicates the Notification will send when its criteria are met, contradicting the belief it prevents sending.
Display Business Rule Access
- Display Business Rules cannot access the GlideSystem object (
B.GlideSystem
).
Access Controls Evaluation
- ServiceNow evaluates Access Controls from the most specific match to the most generic.
Business Rule Admin Role Check
- To verify if the logged-in user has the admin role within a Business Rule, use
gs.hasRole('admin')
.
ServiceNow Application Fit
- Applications requiring "as-is" use of low-level programming libraries are not well-suited for ServiceNow.
Delegated Development in ServiceNow
- ServiceNow's Delegated Development does not inherently include scripting or configuring all required behaviors for new tables.
Field Watcher Debugging
- Script Includes cannot be debugged with the Field Watcher tool in ServiceNow.
Inbound Action Script Objects
- Inbound Action scripts can utilize the
current
andemail
objects.
Client-Side Scripting API
- The GlideUser object (
g_user
) is part of the client-side scripting API.
Application Development Configurations
- ServiceNow allows application developers to customize applications extensively using JavaScript, including UI changes and functionality extensions.
Workflow Context
- A workflow context is generated from a workflow version and is responsible for executing activities and following transitions.
Application Properties Page
- Creating an Application Properties page enables developers and admins to modify application behavior without changing the code directly.
Scheduled Script Execution
- Planned use cases for Scheduled Script Execution in application development were not explicitly detailed.
Restricted Caller Access Records
- Restricted Caller Access Records track cross-scope access requests in ServiceNow applications.
ATF Test Step for User Creation
- The Automated Test Framework (ATF) allows creation of a user with specified roles and groups for testing purposes using the Create a user step.
Guided Application Creator Plugin
- The plugin
com.glide.sn-guided-app-creator
enables the Guided Application Creator in ServiceNow.
External Data Sources for ServiceNow Applications
- ServiceNow applications can integrate with various external data sources, including Microsoft Excel files, public web services (SOAP or REST), and CSV files.
Application Picker and Application Scope
- Selecting an application from the Application Picker does set the Application Scope in ServiceNow.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Description
This quiz tests knowledge on creating new application files in a scoped application within ServiceNow, including aspects of cross scope access. It's suited for individuals preparing for ServiceNow administration or development roles.