Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Adding checksum to URL for pop-up Window

xarg-XrcOct 18 2012 — edited Oct 18 2012
Using Apex 4.1.1

I have button which opens up a pop-up showing a report passing some parameter in URL. The button calls the javascript function defined below:
<script language="JavaScript" type="text/javascript">
  function newReport()
	{
		url = 'f?p=&APP_ID.:37:&APP_SESSION.::NO::P37_ORDER_ID,P37_PLACE_ID,P37_NCR_TO:&P21_ORDER_ID.,&P21_PLACE_ID.,&P21_NCR_TO.';
		w = open(url,"winLov3","position=center, top=1,left=0,Scrollbars=0,resizable=0,width=800,height=800");
		if (w.opener == null)
		w.opener = self;
		w.focus();		
	}			
</script>
It all works well but for security I would like to add checksum to arguments in URL. I had a look at the Javascrpt API for Apex and couldn't find any for creating a checksum I can append to the URL.

Is there one that I missed or is it possible to do it by other means? Cheers.
This post has been answered by trent on Oct 18 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 15 2012
Added on Oct 18 2012
2 comments
1,756 views