Oracle Apps Fundamentals
- Development environment; where developers usually have System Administrator responsibility and also the apps password. If not System Administrator then at least they should have access to “Application Developer” responsibility.
- Testing environment; Developers usually do not and must not have apps password to this environment . This is where users sign-off customizations or even setup changes.
- Production environment; This is where the business runs
- FND_APPLICATION
- FND_UNSUCCESSFUL_LOGINS
- FND_SESSIONS
- FND_PRODUCT_INSTALLATIONS
- FND_PRODUCT_GROUPS
- FND_MESSAGES
- FND_LANGUAGES_TL
- FND_APPLICATION_TL
- FND_APPLICATION_VL
- FND_LANGUAGES_VL
- FND_SIGNONFND_PUB_MESSAGE
- FND_WEBFILEPUB
- FND_DISCONNECTED
- FND_MESSAGE
- FND_SECURITY_PKG
- FND_LOOKUPS
- All the pl/sql packages will be created in APPS Schema
- All the views will be created in APPS Schema
- For each table in individual schema, there will exist one synonym in APPS schema
- Tables are not created in APPS schema, every implementation has at least 1 custom schema, where custom tables are created.
- For each custom table created by you, you will need to create a Synonym in APPS schema
- Any executable that has intense database operations is stored at database tier e.g. oracle reports, sql files, sql*loader.
- Any executable that has intense UI operations is deployed at forms tier. Examples are Oracle Forms fmx files, jsp files, pll/plx etc.
- A form that has intense database processing, must handle most of the database processing within pl/sql packages. The api’s that you build in pl/sql must have well defined parameters.
- Multiple mid-tiers distributes the user load. The user requests are first sent to a load balancer switch, this switch the decides which middle tier to use.
- You will need to deploy your forms file to each middle tier machine (unles shared APPL_TOP) has been implemented.
- FMB files delivered by oracle are picked from $AU_TOP/forms/us.
- All of the pl/sql packages are installed in apps schema.This includes your custom packages and also oracle delivered packages.
- The forms are attached to form functions and it is the form function that is attached to an application
- To generate CUSTOM.pll: cd $AU_TOP/resourcef60gen module=$AU_TOP/resource/CUSTOM.pll userid=apps/apps output_file=./CUSTOM.plx module_type=LIBRARY
- CRP environment: Conference room pilot environment is where usually implementation team gets buying to their product offering from user community, during implementation. This environment is usually used for sign off during new implementations.
- Patching environment: This is where all new Oracle Patches are sanity tested.
- Support environment: This environment is exclusive to support staff. This environment is usually the most frequently cloned environment in Oracle Apps site that has gone live. Frequent cloning helps the Oracle Applications support staff to reproduce production issues
- Migration Environment: This is where repeated data migration can take place before migration code gets frozen and ready for UAT.
Leave a Reply
Want to join the discussion?Feel free to contribute!