Creating a custom schema
When we create custom objects, we need to put them in a custom schema. Oracle has its own schemas for each of its modules such as HR or AP. The schema is defined within Oracle EBS as an application. For each standard schema we extend, you create a custom schema. A custom schema will begin with XX so that we can identify any extension that has been applied to an environment. So, let's say we are extending HR; we will create a custom schema called XXHR
.
We are going to create a schema with the following details:
SCHEMA Name |
|
---|---|
TOP Name |
|
Application |
|
Data Group |
|
Request Group |
|
Menu |
|
Responsibility |
|
APPL_TOP |
|
Instance Name |
|
Server Name |
|
There are several tasks that need to be completed. They are as follows:
Making a new environment parameter
Running AutoConfig (
adautocfg.sh
)Creating a...