Saturday 19 October 2019

Function That Displays External Website in Oracle EBS

Function That Displays External Website in Oracle EBS


You can follow the steps below to create the function that displays external website.



1) Create a function
   System Administrator responsibility

   (N) Application > Function
e.g.
Description: ORACLE
User Function Name: ORACLE

Properties tab
  Type: JSP Interoperable with OA
  Maintenance Mode Support: None
  Context Dependence: Responsibility
Web HTML tab
  HTML Call: oracle.htm



2) Assign the function created in above 1) to the menu attached to the responsibility.



3) Create the html file with the name that you specify in the step 1 above(HTML Call) and save the file in $OA_HTML
e.g.
$OA_HTML/oracle.htm
---------------

<html><head>

<meta http-equiv="Refresh" content="0; URL=https://www.oracle.com/index.html">

</head>

</html>

---------------


4) Login with the responsibility and click on the menu (e.g. ORACLE) and the oracle home page will be displayed.