UI-page The page you are looking for could not be found.

TEJESHBHEEMAVAR
Tera Expert

UI-page The page you are looking for could not be found.

4 REPLIES 4

Abbas_5
Tera Sage
Tera Sage

Hello @TEJESHBHEEMAVAR,

Please refer to the below link:
https://www.servicenow.com/community/now-platform-forum/the-page-you-are-looking-for-could-not-be-fo...

 

Mark my correct and helpful, if it is helpful and please hit the thumbs-up button to mark it as the correct solution.
Thanks & Regards,
Abbas Shaik

Community Alums
Not applicable

Hi @TEJESHBHEEMAVAR ,

In your script are you using "producer.redirect", if you using that please remove and try it once.

 

You can also refer below script 

 

<g:ui_form>
	<input type="text" name="Test" /><br/>
	<label for="Short" >Short Descript</label>
	<textarea id="shDe" name="Short Description" /><br/>
</g:ui_form>

 

Try to run without <g:dialog_button_ok_cancle /> this may be this helps you!

 

Please mark my answer correct and helpful if it works you

 

Thanks and Regards 
Sarthak

Can you please provide more details about what is not working after removing the <g:dialog_button_ok_cancle />? This will help me understand the issue better and provide you with an appropriate solution.

Community Alums
Not applicable

Hi @TEJESHBHEEMAVAR ,

I tried your problem on my PDI and it works for me 

Please check the reference images below:

SarthakKashya2_0-1713173877584.png

SarthakKashya2_1-1713173901708.png

 

Here's UI Page and UI Action for reference 

SarthakKashya2_2-1713173946165.png

Code : 

<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">

<g:ui_form>
	<input type="text" name="Test" /><br/>
	<label for="Short" >Short Descript</label>
	<textarea id="shDe" name="Short Description" /><br/>
	<g:dialog_button_ok_cancle />
</g:ui_form>

</j:jelly>

UI Action 

SarthakKashya2_3-1713174012832.png

Code : 

function uiPageCall(){
	var gdw = new GlideDialogWindow('openPage');
	gdw.setTitle('Open UI Page');
	gdw.setSize(1400,1300);
	gdw.render();
}

 

Please mark my answer correct and helpful if this works for you

 

Thanks and Regards 

Sarthak