In this article we shall see how to invoke
EBS page from APEX page. Create a link in apex page and mention the URL as below:
where
servername -> application server name
port -> EBS port
functionId -> function which you want to
invoke.
Below code will help in retrieving host
URL:
APEX_UTIL.HOST_URL(NULL)
Any additional parameters to the form function
can be passed by appending parameters at the end of the URL.
For ex:
If EBS page has to be opened in new tab/new
window add below code in Link Attributes section in APEX page:
target="_blank"
for ex:-
This helped me a lot
ReplyDelete