Open any URL from Oracle Apps Responsibility's Function

 


In this post we will see how to open any URL from Oracle Apps Responsibility. In responsibility we will add Form Function which will open the URL that we will specify. 

 

  • Get the name of Menu of Responsibility in which you want to add Form Function. In this example we will add Form Function in "System Administrator" responsibility.
  • Copy the menu name "Navigator Menu - System Administrator GUI"
  • Create a new Form Function:
  • In Properties tab, choose the Type as "JSP Interoperable with OA"
  • In Web HTML tab, enter the name of the file which will have the URL to open in HTML Call.
  • Now create the URL.htm file and copy paste the below code. Change the URL as per your need. Here we are opening http://www.oracle.com
<html><head>
<meta http-equiv="Refresh" content="0; URL=http://www.oracle.com">
</head>
<body> 
  • Now place this URL.htm file in $OA_HTML directory on your EBS server
  • Change the permission of the file to 777
  • Now add this function to Responsibility's Menu as below. You can give any Prompt & Description
  • Save the changes. It will submit the request for recompiling the menu. Make sure it completes successfully
  • After re-login you will be able to see that Function has been added to the responsibility
  • When you click access this Function you will be directed to the specified URL in the browser.
 
 
 

Comments