There is a basic strategy when creating a Utils Script Include. Identify the step that does not belong.
There is a basic strategy when creating a Utils Script Include. Identify the step that does not belong.A . Identify the tableB . Script the function(s)C . Create a classD . Create a prototype object from the new classView AnswerAnswer: A Explanation: The step that does not belong when creating...
One of the uses of the ServiceNow REST API Explorer is:
One of the uses of the ServiceNow REST API Explorer is:A . Practice using REST to interact with public data providersB . Find resources on the web for learning about RESTC . Convert SOAP Message functions to REST methodsD . Create sample code for sending REST requests to ServiceNowView AnswerAnswer:...
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...
Which one of the following is NOT a debugging strategy for client-side scripts?
Which one of the following is NOT a debugging strategy for client-side scripts?A . g_form.addInfoMessage()B . Field WatcherC . jslog()D . gs.log()View AnswerAnswer: D Explanation: https://developer.servicenow.com/dev.do#!/learn/learning- plans/rome/new_to_servicenow/app_store_learnv2_scripting_rome_debugging_client_scripts The following are debugging strategies for client-side scripts, which run in the web browser and manipulate the user interface: g_form.addInfoMessage(). This is a...
What are some of the considerations to document as part of the business process?
It is best practice to define the business requirements and the process(es) an application will manage as part of the application development plan. What are some of the considerations to document as part of the business process?A . Business problem, data input/output, users/stakeholders, and process stepsB . Business problem, data...
What are the ways to designate data tables when Guided Application Creator (GAC)? Choose 3 answers
What are the ways to designate data tables when Guided Application Creator (GAC)? Choose 3 answersA . Upload an existing PDF B. Create a new table on the platform C. Use an existing table on the platform D. Upload an existing spreadsheet E. Upload an existing word processing document. F....
Client-side scripts manage what?
Client-side scripts manage what?A . Forms and Forms Fields B. Playbook access C. Database and backend D. User accessView AnswerAnswer: C Explanation: https://docs.servicenow.com/bundle/tokyo-application-development/page/script/server-scripting/concept/c_ServerScripting.html
When designing and creating a form, what do you create to organize fields on a form?
When designing and creating a form, what do you create to organize fields on a form?A . Related lists B. Tabs C. Sections D. ButtonsView AnswerAnswer: C
Which one of the following is NOT a debugging strategy for client-side scripts?
Which one of the following is NOT a debugging strategy for client-side scripts?A . g_form.addInfoMessage() B. Field Watcher C. jslog() D. gs.log()View AnswerAnswer: D Explanation: https://developer.servicenow.com/dev.do#!/learn/learning-plans/rome/new_to_servicenow/app_store_learnv2_scripting_rome_debugging_client_scripts
What are the benefits of storing the majority of an Application’s server-side script logic in a Script Include?
What are the benefits of storing the majority of an Application’s server-side script logic in a Script Include? a) This makes execution faster. b) Only run when called from a script. c) The script logic can be hidden when the Application is installed from the ServiceNow Store. d) For some...