ExamGecko
Question list
Search
Search

Question 114 - CAD discussion

Report
Export

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?

A.
Write an after Business Rule script for the Record Producer's table: window.redirect = '<URL>';
Answers
A.
Write an after Business Rule script for the Record Producer's table: window.redirect = '<URL>';
B.
Create an application property to store the URL
Answers
B.
Create an application property to store the URL
C.
Write a script in the Record Producer's Script field: producer.redirect = '<URL>';
Answers
C.
Write a script in the Record Producer's Script field: producer.redirect = '<URL>';
D.
Configure the page in the Module that opens the Record Producer Ul
Answers
D.
Configure the page in the Module that opens the Record Producer Ul
Suggested answer: 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

asked 23/09/2024
marwan albahar
33 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first