ServiceNow Certified Application Developer — Question 110
Application developers can specify which ServiceNow page a user sees after submitting a new record using the Record Producer UI. How is the page specified?
Answer options
- A. Create an application property to store the URL
- B. Configure the page in the Module that opens the Record Producer UI
- C. Write an after Business Rule script for the Record Producer's table: window.redirect = "<URL>";
- D. Write a script in the Record Producer's Script field: producer.redirect = "<URL>";
Correct answer: D
Explanation
The correct answer is D because writing a script in the Record Producer's Script field allows developers to directly control the redirection after record submission. The other options either suggest incorrect methods or do not utilize the specific functionality provided by the Record Producer UI for redirection.