Finding login URL in Oracle E-Business Suite 12.2.X is easy now

1.1.. Login to Oracle E-Business application server

1.2.. cd /u02/oracle/ERP/EBS122/ (base software location)

1.3.. Source the E-Business environent for e.g . EBSapps.env

200

Note :- Select Run file system

1.4 .. Now you can find out Login URL in either way

1.5 [applmgr@askmedawaa EBS122]$ echo $CONTEXT_FILE

/u02/oracle/ERP/EBS122/fs1/inst/apps/PROD_askmedawaa/appl/admin/PROD_askmedawaa.xml

1.6 [applmgr@askmedawaa EBS122]$

grep login or s_login_page $CONTEXT_FILE or <Full Patch of $CONTEXT_FILE>

<login_

oa_var=”s_login_page”>http://abc.lab:8001/OA_HTML//AppsLogin</login_page>

Similarly you can find URL for Login as given below and compose it manually

[applmgr@askmedawaa EBS122]$ grep s_webentryurlprotocol $CONTEXT_FILE

<webentryurlprotocol oa_var=”s_webentryurlprotocol”>http</webentryurlprotocol>

[applmgr@askmedawaa EBS122]$ grep s_webentryhost $CONTEXT_FILE

<webentryhost oa_var=”s_webentryhost”> abc </webentryhost>

[applmgr@askmedawaa EBS122]$ grep s_webentrydomain $CONTEXT_FILE

<webentrydomain oa_var=”s_webentrydomain”>lab</webentrydomain>

[applmgr@askmedawaa EBS122]$ grep s_active_webport $CONTEXT_FILE

<activewebport oa_var=”s_active_webport” oa_type=”DUP_PORT” base=”8000″ step=”1″ range=”-1″ label=”Active Web Port”>8001</activewebport>

And Final URL will be

s_webentryurlprotocol+s_webentryhost+s_webentrydomain+s_active_webport  = http://abc.lab:8001/

Or

1.6  After sourcing E-Business Suite login to oracle databaase using apps user and query the table

101

SELECT home_url  FROM icx_parameters;

1.7.. To find weblogic url from CONTEXT_FILE of Oracle E-Business Suite 12.2X

grep -i “wls_admin” $CONTEXT_FILE

201

Now composing url :- http://abc.lab:7001/console

Happy Learning !!!!

Leave a comment