UI Pages

Trupti Krishnam
Tera Contributor

I have a record producer where i have to create a UI page for the Form level entries .., once after i fill the form and i submit the form it is directly taking me to the record level rather than taking me to the thank you form of another UI Page that I have created ,where it should create the Request eg(REQ12345)

2 REPLIES 2

Samaksh Wani
Giga Sage
Giga Sage

Hello @Trupti Krishnam 

 

You need to check the Code behind the Submit, Where you can manage the redirection of link to your thank you page.

 

Plz Mark my Solution as Accept and Give me thumbs up, if you find it helpful.

 

Regards,

Samaksh

its a jelly script i have used could you help me where should i have to give 

var requestNumber = '';
var grr = new GlideRecord('x_farf2_dp_request_data_privacy_request');
if (grr.get(RP.getParameterValue("sysparm_id"))) { 
requestNumber = grr.getValue('number');
}
requestNumber;
</g:evaluate>
<div id="outer-wrap">
<nav class="navbar navbar-static-top navbar-ext navbar-ep">
<div class="inner-block">
<div class="navbar-header">
<div id="head-logo">
<img src="fa-dpp-pango-groups.png" alt="CI Logo" height="60" style="margin-top:4px;"/>
</div>
</div>
</div>
</nav>
<div id="main">
<div class="inner-block">
<h3 style="margin: 0 0 10px 0;">Thank you. Your request has been received.</h3>
<p style="font-size:16px;">We will verify your identity and will respond to your request within 45 days. Depending on the sensitivity of the information requested, and to ensure security against fraud, we may request additional information from you and/or may require you to sign a declaration under penalty of perjury.</p>    
<div style="padding: 10px;border: solid 1px #dddddd;">
<p style="margin: 0 0 0 0; color: #616161;">Request Number: ${requestNumber}</p>
</div>