0% found this document useful (0 votes)
3 views

custom_top_creation_manual

The document provides a step-by-step guide for creating a custom application in Oracle E-Business Suite Release 12.1.3 and above, starting from downloading the necessary patch to editing configuration files. It includes instructions for checking application ID availability, editing specific text files, and running commands to finalize the setup. The process concludes with starting the application tier and changing the password for the custom schema if needed.

Uploaded by

mohmmedhdx
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

custom_top_creation_manual

The document provides a step-by-step guide for creating a custom application in Oracle E-Business Suite Release 12.1.3 and above, starting from downloading the necessary patch to editing configuration files. It includes instructions for checking application ID availability, editing specific text files, and running commands to finalize the setup. The process concludes with starting the application tier and changing the password for the custom schema if needed.

Uploaded by

mohmmedhdx
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Creating a Custom Application in Oracle E-Business Suite Release 12.1.

3 and above

Download Patch 3636980 (or use provided already prepared txt files)

SSH as oracle to box

. /u01/install/APPS/EBSapps.env run

Copy patch zip to /u01/install/APPS/fs_ne/EBSapps/patch/

(or you’re going to copy directly provided txt files to $APPL_TOP/admin if not using the
zip patch file)

enter folder:
cd /u01/install/APPS/fs_ne/EBSapps/patch/

extract the content:


unzip -q p3636980_R12_GENERIC.zip

enter folder where necessary files are present:


cd 3636980/izu/admin/

make temporary folder where we’re going to edit files:


mkdir /tmp/cust_top_create

copy files to temporary folder where we’re going to edit them:


cp izuprod.txt /tmp/cust_top_create/
cp izuterr.txt /tmp/cust_top_create/
cp newprods.txt /tmp/cust_top_create/

enter temporary folder:


cd /tmp/cust_top_create/

rename files:
mv izuprod.txt xxprod.txt
mv izuterr.txt xxterr.txt

newprods.txt EDIT

izu → xx
(replace all “izu” text to “xx”, note this is case sensitive)

Check availability of the application id (RDBMS):

SELECT &appid "Application ID", DECODE(count ,0, 'Application ID is available', 'Application


ID is in use') Status
FROM
(
SELECT count(*) as count FROM
(
SELECT 'x' FROM apps.fnd_oracle_userid
where oracle_id = &appid
union
SELECT 'x' FROM apps.fnd_application
where application_id = &appid
)
);

xxprod.txt EDIT

izu → xx
IZU → XX
278 → 55555
(replace all “izu” text to “xx”, replace all “IZU” text to “XX”, replace all “278” text to “55555”
note this is case sensitive)

xxterr.txt EDIT

izu → xx
Oracle_Support_Diagnostic_Tools -> xx_custom_app

(replace all “izu” text to “xx” and “Oracle_Support_Diagnostic_Tools” to “xx_custom_app”,


note this is case sensitive)

Copy the following text files to the $APPL_TOP/admin directory:


 xxprod.txt
 xxterr.txt
 newprods.txt
cp newprods.txt $APPL_TOP/admin
cp xxprod.txt $APPL_TOP/admin
cp xxterr.txt $APPL_TOP/admin

enter the folder:


cd $APPL_TOP/admin

Run ADSplice
adsplice

accept defaults and when prompted enter your apps and system (db) passwords

Start app tier


adstrtal.sh
If you want to change the password for custom schema:
FNDCPASS apps/apps 0 Y system/Welcome01 ORACLE XX Welcome01

You might also like