nerdexam
ServiceNow

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

Submitted by ashley.k· Apr 18, 2026Designing and Creating an Application

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)
  • A
    10% (4)
  • B
    80% (33)
  • C
    7% (3)
  • D
    2% (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

#Record Producer#Redirection#Application Properties#UI Flow

Community Discussion

No community discussion yet for this question.

Full CAD Practice