Free CAD Exam Braindumps (page: 30)

Page 29 of 70

Application developers can specify which ServiceNow page a user sees after submitting a new record using the Record Producer Ul. How is the page specified?

  1. Write an after Business Rule script for the Record Producer's table: window.redirect = "<URL>";
  2. Create an application property to store the URL
  3. Write a script in the Record Producer's Script field: producer.redirect = "<URL>";
  4. Configure the page in the Module that opens the Record Producer Ul

Answer(s): C

Explanation:

Application developers can specify which ServiceNow page a user sees after submitting a new record using the Record Producer UI by writing a script in the Record Producer's Script field:
producer.redirect = "<URL>";. This script sets the redirect property of the producer object to the URL of the desired page. For example, producer.redirect = "home.do"; will redirect the user to the homepage after submitting the record. The other options are not valid ways to specify the redirect page for a Record Producer.


Reference:

Populate record producer data and redirect users



Tables that extend a table do what?

  1. Sometimes inherit the parent's fields
  2. Automatically update the application scope
  3. Do not inherit the parent's fields
  4. Inherit the parent's fields

Answer(s): D

Explanation:

Tables that extend a table inherit the parent's fields. Extending a table means creating a child table that shares the same columns and business logic as the parent table. For example, the Incident table extends the Task table, which means that all fields defined on the Task table are also available on the

Incident table. Extending a table allows for reusing existing fields and behaviors without duplicating them on multiple tables.


Reference:

Table extension and classes



Which actions can a Business Rule take without scripting?

  1. Set field values and query the database
  2. Set field values and generate an event
  3. Set field values and write to the system log
  4. Set field values and add message

Answer(s): B

Explanation:

A Business Rule can take actions such as setting field values and generating an event without scripting. A Business Rule is a server-side script that runs when a record is displayed, inserted, updated, deleted, or queried. A Business Rule can use filter conditions, role conditions, and actions to define when and how it should run. Actions are predefined operations that can be performed on a record, such as setting field values, generating an event, adding a message, or writing to the system log. These actions do not require scripting and can be selected from a drop-down list.


Reference:

Use business rules and client scripts to control field values



What are Application Files in a ServiceNow application?

  1. An XML export of an application's table records
  2. ServiceNow artifacts comprising an application
  3. XML exports of an application's Update Set
  4. CSV files containing data imported into an application

Answer(s): B

Explanation:

Application Files are ServiceNow artifacts comprising an application. An application is a group of files and data that work together to provide a service or functionality. An application file is a specific type of file that belongs to an application, such as a table, a script, a form, a business rule, a UI action, etc. Application files define the structure, logic, and interface of the application. An XML export of an application's table records, XML exports of an application's Update Set, and CSV files containing data imported into an application are not examples of application files, as they are data formats that can be used to transfer or store information related to an application, but not the application itself.


Reference:

Application Files






Post your Comments and Discuss ServiceNow® CAD exam with other Community members:

CAD Discussions & Posts