Which objects can you use in a Scheduled Script Execution (Scheduled Job) script?
Which objects can you use in a Scheduled Script Execution (Scheduled Job) script?A . GlideRecord and currentB . GlideUser and GlideRecordC . GlideSystem and GlideRecordD . GlideSystem and currentView AnswerAnswer: C Explanation: https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_administrator/app_store_learnv2_automatingapps_quebec_scheduled_s cript_execution_scripts The objects that you can use in a Scheduled Script Execution (Scheduled Job) script are GlideSystem...
Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?
Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?A . All access to this table via web servicesB . Can create, Can update, and Can deleteC . Can read does not affect the availability of other Application Access fieldsD . Allow configurationView...
Which of the following is an available feature in Studio? Choose 2 answers
Which of the following is an available feature in Studio? Choose 2 answersA . Push to external source controlB . Search branchC . Merge branchesD . Push to update setView AnswerAnswer: A, B Explanation: Search branch and merge branches are available features in Studio. Search branch allows you to search...
The task table is an example of which of the following?
The task table is an example of which of the following? Choose 2 answersA . Legacy classB . Child classC . Base classD . Parent classView AnswerAnswer: C, D Explanation: "A table that extends another table is called a child class, and the table it extends is the parent class"...
Which of the following statements is true for the Form Designer?
Which of the following statements is true for the Form Designer? a) To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form. b) To create a new field on a form’s table, drag the appropriate data type from...
Which of the following features are available to Global applications? (Choose two.)
Which of the following features are available to Global applications? (Choose two.)A . Automated Test FrameworkB . Source ControlC . Delegated DevelopmentD . Flow DesignerView AnswerAnswer: AD Explanation: Global applications can use Automated Test Framework and Flow Designer features, but not Source Control and Delegated Development features. Source Control and...
Which one of the following is NOT a purpose of application scoping?
Which one of the following is NOT a purpose of application scoping?A . Provide a relationship between application artifactsB . Provide a way of tracking the user who developed an applicationC . Provide a namespace (prefix and scope name) to prevent cross application name collisionsD . Provide controls for how...
Which of the following are true for reports in ServiceNow? (Choose three.)
Which of the following are true for reports in ServiceNow? (Choose three.)A . Any user can see any report shared with them.B . Can be a graphical representation of data.C . All users can generate reports on any table.D . Can be run on demand by authorized users.E . Can...
In a Business Rule, which one of the following returns true if the currently logged in user has the admin role?
In a Business Rule, which one of the following returns true if the currently logged in user has the admin role?A . g_form.hasRoleExactly(‘admin’)B . gs.hasRole(‘admin’)C . g_form.hasRole(‘admin’)D . gs.hasRoleExactly(‘admin’)View AnswerAnswer: B Explanation: Business Rule is server-side, so it uses GlideSystem API. gs.hasRoleExactly doesn't exist In a Business Rule, the following...
Here is the Business Rule script template:
Here is the Business Rule script template: This type of JavaScript function is known as:A . ConstructorB . ScopedC . AnonymousD . Self-invokingView AnswerAnswer: D Explanation: Self-invoking. Learn JavaScript! This type of JavaScript function is known as self-invoking or immediately-invoked function expression (IIFE). It is a function that is defined...