0

I have successfully extended EBS to launch APEX page. Now, When I click on the APEX responsibility-menu-function in EBS, the EBS page gets replaced by the APEX page. But I want to open the APEX page in a new window. So that my EBS page still stays.

Can you please suggest a way how we can do that. Thank you very much in advance

Abha
  • 327
  • 3
  • 11
  • 26

1 Answers1

1

Change the link that launches your Apex page so the link (aka "a" includes the attribute:

target="_blank"
StewS2
  • 401
  • 4
  • 10
  • Hi..Can you please specify where exactly I need to add this attribute..My APEX Page is launched from form Function from EBS, where I am providing : GWY.jsp?targetAppType=APEX&p=200:3:::::EBS_RESP_ID, EBS_APP_ID,EBS_SEC_GROUP:[RESPONSIBILITY_ID],[RESP_APPL_ID],[SECURITY_GROUP_ID] as value. Do I need to specify the attribute here or at some other place ? And how can I do that ? – Abha May 22 '18 at 09:14
  • If you liked my answer, would you mind marking it "Correct"? I could use the points. Thanks. – StewS2 Jul 12 '18 at 16:09
  • It is not completely the right answer, as it just opens the blank page in new window. all the page content is lost. – Abha Jul 16 '18 at 06:50
  • Did you include the rest of the URL with your page? e.g. your_domain.com/f?p=&APP_ID.:&NEW_PAGE_ID.:&SESSION.::::: – StewS2 Jul 17 '18 at 16:20
  • Yes I Did... I called it like this in the EBS function : javascript:window.open(“GWY.jsp?targetAppType=APEX&p=200:1:::::EBS_RESP_ID, EBS_APP_ID,EBS_SEC_GROUP:[RESPONSIBILITY_ID],[RESP_APPL_ID],[SECURITY_GROUP_ID]“, “_blank”) – Abha Jul 18 '18 at 13:55
  • Check this out. I'm thinking it's the right answer for your need. https://stackoverflow.com/a/11036018/1529154 – StewS2 Jul 18 '18 at 17:16