0% found this document useful (0 votes)
74 views2 pages

Creating Custom Application: Adovars - Env

The document provides steps to create a custom application called XXDHC in Oracle Applications 11i including creating directory structures on prodapp and proddb servers, adding an environment variable for the application path, creating a tablespace and user for the application schema, registering the application and user in Oracle Applications, and adding the application to a data group for security. It also lists some relevant My Oracle Support notes for creating custom applications in Oracle Applications 11i.

Uploaded by

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

Creating Custom Application: Adovars - Env

The document provides steps to create a custom application called XXDHC in Oracle Applications 11i including creating directory structures on prodapp and proddb servers, adding an environment variable for the application path, creating a tablespace and user for the application schema, registering the application and user in Oracle Applications, and adding the application to a data group for security. It also lists some relevant My Oracle Support notes for creating custom applications in Oracle Applications 11i.

Uploaded by

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

Creating Custom Application

 Create the Directory structure Under APPL_TOP

Connect to proddb (192.9.200.244) as applprdn


Create the Directory structure like
$cd $APPL_TOP
$mkdir –p xxdhc/11.5.0

$cd xxdhc/11.5.0

$mkdir admin sql bin reports forms out log resource


$mkdir data scripts mesg help graphs edi
$mkdir –p reports/US
$mkdir –p forms/US

Connect to prodapp (192.9.200.243) as applprdn


Create the Directory structure like
$cd $APPL_TOP
$mkdir –p xxdhc/11.5.0

$cd xxdhc/11.5.0

$mkdir admin sql bin reports forms out log resource


$mkdir media scripts mesg help graphs
$mkdir –p reports/US
$mkdir –p forms/US

 Create environment for custom application i.e. XXDHC

Add the env to adovars.env which is under $APPL_TOP/admin


XXDHC_TOP="$APPL_TOP/xxdhc/11.5.0"

export XXDHC_TOP

Add this in both prodapp and proddb

 Create new tablespace for XXDHC

SQL>create tablespace XXDHC datafile '/u02/oraclep/prdndata/xxdhc01.dbf' size


10M reuse autoextend OFF extent management LOCAL AUTOALLOCATE;

 Create user for XXDHC

SQL>create user XXDHC identified by XXDHC default tablespace XXDHC


temporary tablespace TEMP quota unlimited on XXDHC;
SQL>grant analyze any, alter session, create procedure, create sequence, create
session, create snapshot, create table, create type, create synonym to XXDHC;

 Register Custom Application

Login to Applications with System Administrator responsibility


Navigate to Application-->Register

Application = Diodes Hainchu


Short Name = XXDHC
Base path = XXDHC_TOP
Description = Diodes Hainchu Custom Application

 Register Oracle User

Database User Name = XXDHC


Password = XXDHC
Privilege = Enabled
Install Group =1
Description = Diodes Hainchu Custom Application

 Add Application to a Data Group

Navigate to Security-->Oracle-->DataGroup
Query for Standard group
Application = Diodes Hainchu
Oracle ID = APPS
Description = Diodes Hainchu Custom Application

Refer the metalink documents

 Step By Step Guide to Creating a Custom Application in Applications 11i


Note: 216589.1

 Function is not available to this responsibility Note:561787.1


 HOW TO INTEGRATE APPLICATIONS RELEASE 11 WITH CUSTOM
APPLICATIONS Note:70276.1

You might also like