アプリケーション開発者は、レコード プロデューサー Ul を使用して新しいレコードを送信した後にユーザーに表示される ServiceNow ページを指定できます。ページはどのように指定されますか?
正解:C
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