CAD · Question #82
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?
The correct answer is B. Create an application property to store the URL. 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 t
Question
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?
Options
- AWrite an after Business Rule script for the Record Producer's table: window.redirect = "<URL>";
- BCreate an application property to store the URL
- CWrite a script in the Record Producer's Script field: producer.redirect = "<URL>";
- DConfigure the page in the Module that opens the Record Producer Ul
How the community answered
(41 responses)- A10% (4)
- B80% (33)
- C7% (3)
- D2% (1)
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.
Topics
Community Discussion
No community discussion yet for this question.