Which of the following is NOT a trigger type in Flow Designer?
Which of the following is NOT a trigger type in Flow Designer?A . Outbound EmailB . ApplicationC . RecordD . ScheduleView AnswerAnswer: A Explanation: See list of triggers on right hand side of this webpage: https://docs.servicenow.com/en-US/bundle/tokyo-application-development/page/administer/flow-designer/reference/flow-triggers.html The trigger types in Flow Designer are Application, Record, Schedule, and Topic. Outbound Email...
In an Email Notification, which one of the following is NOT true for the Weight field?
In an Email Notification, which one of the following is NOT true for the Weight field?A . Only Notifications with the highest weight for the same record and recipients are sentB . A Weight value of zero means that no email should be sentC . The Weight value defaults to...
Which Report Type(s) can be created by right-clicking on a column header in a table’s list?
Which Report Type(s) can be created by right-clicking on a column header in a table’s list?A . Bar Chart, Pie Chart, Histogram, and LineB . Bar ChartC . Bar Chart, Pie Chart, and HistogramD . Bar Chart and Pie ChartView AnswerAnswer: D Explanation: The Bar Chart and Pie Chart report...
Which of the following objects does a Display Business Rule NOT have access to?
Which of the following objects does a Display Business Rule NOT have access to?A . previousB . GlideSystemC . g_scratchpadD . currentView AnswerAnswer: A Explanation: A Display Business Rule has access to the current, g_scratchpad, and GlideSystem objects, but not the previous object. The previous object is only available to...
What is a Module?
What is a Module?A . The functionality within an application menu such as opening a page in the content frame or a separate tab or windowB . A group of menus, or pages, providing related information and functionality to end-usersC . A way of helping users quickly access information and...
Which method call returns true only if the currently logged in user has the catalog_admin role and in no other case?
Which method call returns true only if the currently logged in user has the catalog_admin role and in no other case?A . g_user.hasRole(‘catalog_admin’)B . g_user.hasRoleExactly(‘catalog_admin’)C . g_user.hasRoleOnly(‘catalog_admin’)D . g_user.hasRoleFromList(‘catalog_admin’)View AnswerAnswer: B Explanation: The method call that returns true only if the currently logged in user has the catalog_admin role and...
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...
When creating new application files in a scoped application, cross scope access is turned on by default in which of the following?
When creating new application files in a scoped application, cross scope access is turned on by default in which of the following?A . REST messagesB . TableC . Script IncludeD . WorkflowView AnswerAnswer: B Explanation: "By default, all application scope scripts can read the table's records but cannot perform any...
What syntax is used in a Record Producer script to access values from Record Producer form fields?
What syntax is used in a Record Producer script to access values from Record Producer form fields?A . producer.field_nameB . producer.variablenameC . current.variable_nameD . current.field_nameView AnswerAnswer: B Explanation: The syntax used in a Record Producer script to access values from Record Producer form fields is producer.variable_name. A Record Producer is...
To see what scripts, reports, and other application artifacts will be in a published application:
To see what scripts, reports, and other application artifacts will be in a published application:A . Enter the name of the Application in the Global search fieldB . Open the list of Update Sets for the instanceC . Examine the Application Files Related List in the application to be publishedD...