Which of the following methods prints a message on a blue background to the top of the current form by default?
Which of the following methods prints a message on a blue background to the top of the current form by default?A . g_form.addInfoMsg()B . g_form.addInfoMessage()C . g_form.showFieldMessage()D . g_form.showFieldMsg()View AnswerAnswer: B Explanation: From: https://docs.servicenow.com/bundle/paris-application-development/page/script/general-scripting/reference/r_ScriptingAlertInfoAndErrorMsgs.html g_form.showFieldMsg("field_name", "Hello World", "error"); Puts "Hello World" in an error message **below the specified field**. g_form.addInfoMessage()...
How many applications menus can an application have?
How many applications menus can an application have?A . 3, one for an application’s user modules, one for an application’s administrator modules, and one for the ServiceNow administrator’s modulesB . As many as the application design requiresC . 2, one for an application’s user modules and one for an application’s...
When configuring a REST Message, the Endpoint is:
When configuring a REST Message, the Endpoint is:A . The commands to the REST script to stop executionB . The URI of the data to be accessed, queried, or modifiedC . Information about the format of the returned dataD . The response from the provider indicating there is no data...
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 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...