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!

How to call a APEX page from EBS OAF Page

Krystian38 hours ago — edited 38 hours ago

I'm struggling with Java String Url to call Apex Page .

ORACLE R12.2

Calling from Form Personalization works fine ->

Function: XX_APEX_PAGE1
Parameters : ='p=100:9999:::::EBS_SESSION,APEX_PAGE_ID,P5_INVOICE_ID:[EBS_SESSION],5,'||:INV_SUM_FOLDER.ATTRIBUTE15

Now I want to execute this function in OAF Custom Page

I got OALinkBean
and trying to do somethink like this..

             String url =
                 "RF.jsp"
               + "?function_id=59085"
               + "&resp_id=" + "50838"
               + "&resp_appl_id=" + "200"
               + "&security_group_id=0"
               + "&lang_code=US"
               + "&p=100:9999:::::"
               + "&APEX_PAGE_ID=5" 
               + "&P5_INVOICE_ID=" + attribute15;

OALinkBean b = (OALinkBean)webBean.findChildRecursive("OpenInvoice");      
b.setTargetFrame("_blank");
b.setDestination(url);

but of course it does not work...

Can anyone can tell how to build correct url string ?

This post has been answered by Krystian on Jan 8 2026
Jump to Answer
Comments
Post Details
Added 38 hours ago
1 comment
41 views