SlideShare a Scribd company logo
Agenda
• Technical Architecture
– Architecture Diagram – 11i v/s R12
– Technology Components – Client, Application and Database Tiers
– File System and Directory Structure
• Swan User Interface
• Multi-Org Access Control (MOAC)
– Technical Considerations
• Concurrent Processing
– Program Definition
– Restarting Request Set
– OAF based Request Set Submission UI
– Enhanced request security via RBAC
• Oracle Application Framework – New and Enhanced Features
• Oracle XML Publisher – New and Enhanced Features
• Integration Repository
Technical Architecture
R12 Technical Architecture Diagram
11i v/s R12 Architecture
Comparison
New and Changed Technology
Components – Client Tier
Moving from Jinitiator to Native Sun Java plug-in – J2SE 1.5
Supported Browsers:
 Internet Explorer (IE) 6.0
 Netscape 7.2
 FireFox 1.5
 Safari 2.0
New and Changed Components –
Application Tier
Tech stack in Application tier builds on Fusion Middleware:
Uses –
Application Server 10.1.2 for Forms and Reports Services
Replaces the 8.0.6 based 9iAS 1.0.2.2 tech stack
Application Server 10.1.3 for Oracle Containers for Java (OC4J)
Replaces the 8.1.7 based 9iAS 1.0.2.2 tech stack
Oracle Jdeveloper 10.1.3
Following Middleware Components can be optionally integrated:
Integration Services (OID 10g, BPEL Process Manager 10.1.3 etc)
Identity Management (Single Sign On 10.1.2.0.2)
Discoverer 10g (10.1.2.0.2)
WebCache 10g (10.1.2.0.2)
Portal 10.1.4
Oracle Collaboration Suite
Oracle SOA Suite
Oracle Master Data Management
Oracle Applications R12 architecture
New and Changed Components –
Database Tier
9i R2 database in 11i has been upgraded to 10gR2 (10.2.0.2) in R12
Data model enhancements – Major enhancement to Trading
Community Architecture to include Suppliers and Banks. Effectively
TCA now includes following parties – Customers, Suppliers, Banks
and Employees.
Master Data Management - Data Hubs
Single source of truth.
Common Repository.
File System Changes
– 11i File System
11i File System
New R12 file system model segregates Code, Data, Configurations
INST_TOP - Release 12 introduces the concept of a top-level directory
for an Applications instance.
File System Changes –
R12 File System
Compare R12 and 11i
Directory Structures
Data Directory – $DATA_TOP - Located in database node and contains
DB files like redo logs, table spaces and datafiles.
<APPS_BASE>/db/apps_st/data
DB Directory – $DB_TOP – Contains Oracle_Home for 10g Database.
<APPS_BASE>/db/tech_st/10.2.0
Application Top – $APPL_TOP – Located on Application tier, contains
product directories and files.
<APPS_BASE>/apps/apps_st/appl
Common Top – $COMN_TOP – directories and files used across
products like HTML files, jar files etc.
<APPS_BASE>/apps/apps_st/comn
Instance Home – $INST_TOP – Introduced in R12 stores all the config
files, log files, SSL certificates, document root etc on Application
node.
<APPS_BASE>/inst/apps/<appl_context>
Shared Application File System
Application tier file system installed on a shared disk resource and is
mounted from each application tier node.
All nodes must be on same OS.
Ability to provide any standard service from any node.
Patching and maintenance to be performed once on a single node.
Reduction in overall storage requirement.
Simplifies addition of additional application tier node.
Changes on shared file system are reflected immediately on all nodes.
Global Single Instance
Multi-Org Access Control
Technical Aspects
Access multiple operating units within a single application
responsibility
Perform tasks for and across multiple operating units
Enter transactions
Process data
View information
Run reports
Increase effectiveness of shared services centers
Multi-Org ....To
Multi-Org Access Control
New Changes from Multi-Org ....To Multi-
Org Access Control
•As discussed above, security Profiles for data security
oMO: Security Profile
oList of operating units for a responsibility
•OU field on UI
oall transactions
osetup data specific to OU, like transaction type
•Enhanced Multi-Org Reporting and Processing
•Ledger/Ledger Set parameter on accounting reports and processes
•OU parameter on other standard reports and processes
oFor example: submit the Payables Open Interface Import w/OU
param null to import all records across all OUs
Where and how to define a security
ProfileUsing Oracle HRMS, you can define your security profile using two
forms:
•The Security Profile form
•The Global Security Profile form that is shown here.
Run Security List Maintenance
Program
Navigation: HR Responsibility  Processes and Reports  Submit Processes
and Reports
Multi-Org Profile Options
Profile Value Description
MO: Security Profile
(New in R12)
MO: Default Operating Unit
(New in R12)
Controls the list of operating units
that a responsibility or user can access
MO: Operating Unit
R11i profile option that will be maintained
for those products and customers not
leveraging Multiple Organizations.
Controls which operating unit will default
when accessing an application page
Multi-Org Preferences
User Level Preferences
Specify User Level Preferences
Identify a subset of operating units to access
Set default Operating Unit specific to that user
Add Preferences to Sub Menu
Navigation: System Administrator  Application  Menu
Application Developer  Application  Menu
To accomplish access to more than one operating unit within single
responsibility –
 Multi-org views have been replaced with synonyms.
For example MY_TABLE will no longer be a view on
MY_TABLE_ALL but a synonym pointing to MY_TABLE_ALL.
 Data restriction is accomplished by assigning a Virtual Private
Database (VPD) policy to the synonym. This policy allows system
to dynamically generate additional restriction conditions when
queries are run against the synonym.
MOAC Technical Considerations
MOAC Technical Considerations
How is client_info (org context) being replaced by policy
context in Release 12?
Prior to R12
a. A table is created in application schema, eg: PO_HEADERS_ALL IN PO
schema.
b. A synonym named PO_HEADERS_ALL is created in APPS schema,
referring to PO.PO_HEADERS_ALL
c. Create a view PO_HEADERS in APPS schema, as "select * from
po_headers_all where org_id=client_info"
In R12
a. A table is created in PO Schema, named PO_HEADERS_ALL
b. A synonym named PO_HEADERS_ALL is created in APPS schema,
referring to PO.PO_HEADERS_ALL
c. Another synonym named PO_HEADERS is created in APPS, referring to
PO_HEADERS_ALL synonym
d. A Row Level security is applied to PO_HEADERS, using package function
MO_GLOBAL.ORG_SECURITY.
e. The effect of this policy is that,whenever you access PO_HEADERS, Oracle
RLS will dynamically append WHERE CLAUSE -
SELECT * FROM PO_HEADERS WHERE EXISTS (SELECT 1 FROM
mo_glob_org_access_tmp oa WHERE oa.organization_id = org_id)
MOAC Technical Considerations
Database Multi-Org Access Control
Prior to R12 standard the org context was established using either
DBMS_APPLICATION_INFO.SET_CLIENT_INFO or
FND_CLIENT_INFO.SET_ORG_CONTEXT
In R12 the org context is established using API MO_GLOBAL.INIT.
This API accepts a single parameter “Application short name”.
Concurrent Processing
Concurrent Processing – Program
Definition
A new attribute in Concurrent Program definition “Operating Unit Mode”
to categorize a program as MOAC enabled or not.
 Single OU Concurrent Program
 Multiple OU Concurrent Program
 None (Null or blank value)
This value can be set through Program definition OAF page in System
Administration responsibility.
Standard Request Submission –
New Operating Unit field is displayed which has a LOV populated with
operating units accessible to the user.
Allows user to run programs for multiple operating units without
changing responsibility.
Concurrent Processing –
Restarting Request Set
Prior to R12 –
If a process in the middle of request set fails, user has to fix
the cause and then either run remaining processes manually
or re-submit the entire set.
Secondly ones a request set is submitted, user had no control
whatsoever.
In R12 –
If a process in the middle of request set fails, user can fix the
cause of failure and restart the request set from the point of
failure.
User can put a running request set on hold and later remove
hold to continue.
Concurrent Processing –
OAF Request Set Submission UI
Request Sets can now be submitted through a new OAF User
Interface available in Release 12.
Oracle Application Framework
OA Framework - Overview
What is OA Framework?
 Oracle Applications development and deployment platform for
HTML-based business applications.
 Composed of a set of middle-tier runtime services
as well as a design-time extension to Oracle JDeveloper
called the OA Extension.
 Based on J2EE based Model-View-Controller architecture.
OA Framework MVC Architecture
OA Framework Model – implemented using Oracle Business
Components for Java (BC4J).
OA Framework View – implemented using an Oracle technology
called User Interface XML (UIX).
OA Framework Controller – Pure Java class implementation.
OA Framework New Features in
R12
Personalization Administration
Command line personalization import/export is now available in
HTML pages included in Functional Administrator Responsibility.
About This Page Now includes
 Last 10 patches applied on the instance
 Flexfield definitions on the page
 Ability to launch Admin Personalization
Corporate Branding Image
Corporate branding logo can be changed using profile
“Corporate Branding Image For Oracle Applications”
Configurable Start Page
Use preferences link to set the start page that displays after
login.
Oracle XML Publisher 5.6.3
New and Enhanced Features
Overview XML Publisher 5.6.3
Technology means business !!
Business means brilliant reporting !!
Business Reports common requirements –
 Segregation of data and presentation
 Flexible output formats
 Multi-lingual reports
 Effective presentation with graphics
 Pre-printed stationary
 Regulatory compliance
XML Publisher Flexible Reporting
Flexible Data sources Flexible Layouts
Flexible Formats (output) Flexible Delivery Channels
New Features XML Publisher 5.6.3
 Data Extraction Engine
 Bursting Engine
 Consolidated Document Publishing
 Template Enhancements
 Template Manager
 Integration
XML Publisher Content in R12
Used across products from Finance to SCM to CRM
800+ seeded templates
Seeded data definitions for modules like Payments
Payment formats leverages XML Publisher
Sample RTF Template
XML Publisher Administrator
Responsibility
XML Publisher Data Definition
XML Publisher Template Definition
Oracle Integration Repository
Integration Repository (iRep)
Introduction R12Oracle Integration Repository –
 Catalogue of all E-Business suite integration points
 Acts as service broker
 Shipped as part of E-Business Suite
Includes screens for searching and viewing all available integration
points with just a web browser.
Interface Types supported –
 PL/SQL APIs
 Open Interface Tables
 Interface views
 Concurrent Programs
 Java
 Web Service
 XML Gateway Messages
 eCommerce Gateway Messages
 Business Events
Navigation: Integration Responsibility  Integration Responsibility
Integration Repository Screen
Integration Repository
Search Screen
Integration Repository
Search Result

More Related Content

PDF
Ame how to diagnose issues with the default approver list in purchasing when ...
DOCX
Elshayeb Oracle R12 Order Management
PDF
Oracle Apps Technical – Short notes on RICE Components.
DOCX
R12 Fixed Assets General Questions
DOCX
Pick pack and ship confirm process in oracle apps
PPTX
Oracle E-Business Suite 12.2 - The Upgrade to End All Upgrades
PDF
Oracle R12 Legal Entity
PDF
Encumbrance accounting in oracle ebs r12
Ame how to diagnose issues with the default approver list in purchasing when ...
Elshayeb Oracle R12 Order Management
Oracle Apps Technical – Short notes on RICE Components.
R12 Fixed Assets General Questions
Pick pack and ship confirm process in oracle apps
Oracle E-Business Suite 12.2 - The Upgrade to End All Upgrades
Oracle R12 Legal Entity
Encumbrance accounting in oracle ebs r12

What's hot (20)

PDF
Oracle forms personalization
PDF
Oracle EBS Currency conversion
PPT
Oracle Fusion Application
PPTX
Oracle Process Manufacturing
PDF
Fusion apps receivables
DOC
Oracle EBS R12 Payroll user manual
PDF
Oracle General ledger ivas
DOCX
PO Position Hierarchy in R12
PDF
BOM & WIP
PDF
Oracle financials functional training on ap, ar & gl
PDF
All About Multi Organization Access
DOCX
Oracle order management implementation manual
DOCX
Oracle Apps Technical Syllabus
DOC
How to auto create trip in oracle order management
PPTX
Smart forms and information templates in Oracle iProcurement
DOC
R12 subinventory transfer and inter org transfers
PPTX
Designing a Chart of Accounts and Enterprise Structure in Oracle Fusion ERP C...
PDF
White Paper Oracle Subledger Accounting
PDF
Oracle Payables R12 ivas
PDF
R12 revenue recognition_oaug
Oracle forms personalization
Oracle EBS Currency conversion
Oracle Fusion Application
Oracle Process Manufacturing
Fusion apps receivables
Oracle EBS R12 Payroll user manual
Oracle General ledger ivas
PO Position Hierarchy in R12
BOM & WIP
Oracle financials functional training on ap, ar & gl
All About Multi Organization Access
Oracle order management implementation manual
Oracle Apps Technical Syllabus
How to auto create trip in oracle order management
Smart forms and information templates in Oracle iProcurement
R12 subinventory transfer and inter org transfers
Designing a Chart of Accounts and Enterprise Structure in Oracle Fusion ERP C...
White Paper Oracle Subledger Accounting
Oracle Payables R12 ivas
R12 revenue recognition_oaug
Ad

Viewers also liked (6)

PPT
Oracle Forms : Timers
PPT
Oracle Forms Creation
PPT
Oracle Forms Introduction
PDF
Oracle GL R12 course Content
PPT
Oracle Forms: Oracle Server features
PPT
Oracle APPS :Receivables Auto Invoice
Oracle Forms : Timers
Oracle Forms Creation
Oracle Forms Introduction
Oracle GL R12 course Content
Oracle Forms: Oracle Server features
Oracle APPS :Receivables Auto Invoice
Ad

Similar to Oracle Applications R12 architecture (20)

PPTX
Oracle ERP EBS Introduction Presentation
PDF
Architecture and tools
PPT
4 01 peters
PPTX
Anil nair rac_internals_sangam_2016
PPTX
Oracle_EBS_Technical.pptx
PPT
Oracle Fusion & Cloud Applications Overview
PDF
Xavier technology adapters
PPT
New Enhancements + Upgrade Path to Oracle EBS R12.1.3
PDF
oracle database sql part 1.pdf
PPTX
Introduction to soa suite 12c in 20 slides
PDF
Summer training oracle
PDF
Oracle RAC 19c and Later - Best Practices #OOWLON
PPT
PPT
Oracle Applications R12 Architecture
PDF
Why to Use an Oracle Database?
PPT
Dh2 Apps Training Part2
PPT
R12 d49656 gc10-apps dba 04
PDF
Oracle ebs r12_architecture
PPTX
Oracle OpenWorld 2014 Review Part Five - SaaS
PDF
Database failover from client perspective
Oracle ERP EBS Introduction Presentation
Architecture and tools
4 01 peters
Anil nair rac_internals_sangam_2016
Oracle_EBS_Technical.pptx
Oracle Fusion & Cloud Applications Overview
Xavier technology adapters
New Enhancements + Upgrade Path to Oracle EBS R12.1.3
oracle database sql part 1.pdf
Introduction to soa suite 12c in 20 slides
Summer training oracle
Oracle RAC 19c and Later - Best Practices #OOWLON
Oracle Applications R12 Architecture
Why to Use an Oracle Database?
Dh2 Apps Training Part2
R12 d49656 gc10-apps dba 04
Oracle ebs r12_architecture
Oracle OpenWorld 2014 Review Part Five - SaaS
Database failover from client perspective

More from Sekhar Byna (20)

DOCX
oracle APPS: Weekly Update
RTF
Oracle apps online training
PPT
Oracle Forms : Multiple Forms
PPT
Oracle Forms: Record Groups
PPT
Oracle Forms: Master Detail form
PPT
Oracle Forms :Object Features In forms
PPT
Oracle Forms: Data Blocks on Different Sources
PPT
Oracle Forms :Window and Canvases
PPT
Oracle Forms Mouse triggers
PPT
Oracle Forms- key triggers
PPT
Oracle Forms: Menu
PPT
Oracle Forms: Introduction to multiple Forms
PPT
Oracle Forms : Reusable Components
PPT
Oracle Forms : Coding ..
PPT
Oracle Forms : Transnational Triggers
PPT
Oracle Forms : Validation Triggers
PPT
Oracle Forms : Query Triggers
PPT
Oracle Forms Triggers
PPT
Oracle Forms: Messages
PPT
Oracle Forms: create debug triggers
oracle APPS: Weekly Update
Oracle apps online training
Oracle Forms : Multiple Forms
Oracle Forms: Record Groups
Oracle Forms: Master Detail form
Oracle Forms :Object Features In forms
Oracle Forms: Data Blocks on Different Sources
Oracle Forms :Window and Canvases
Oracle Forms Mouse triggers
Oracle Forms- key triggers
Oracle Forms: Menu
Oracle Forms: Introduction to multiple Forms
Oracle Forms : Reusable Components
Oracle Forms : Coding ..
Oracle Forms : Transnational Triggers
Oracle Forms : Validation Triggers
Oracle Forms : Query Triggers
Oracle Forms Triggers
Oracle Forms: Messages
Oracle Forms: create debug triggers

Recently uploaded (20)

PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Spectral efficient network and resource selection model in 5G networks
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
A Presentation on Artificial Intelligence
PDF
Empathic Computing: Creating Shared Understanding
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
Cloud computing and distributed systems.
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
NewMind AI Weekly Chronicles - August'25 Week I
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Understanding_Digital_Forensics_Presentation.pptx
Spectral efficient network and resource selection model in 5G networks
“AI and Expert System Decision Support & Business Intelligence Systems”
A Presentation on Artificial Intelligence
Empathic Computing: Creating Shared Understanding
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Dropbox Q2 2025 Financial Results & Investor Presentation
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Review of recent advances in non-invasive hemoglobin estimation
Per capita expenditure prediction using model stacking based on satellite ima...
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Cloud computing and distributed systems.
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Building Integrated photovoltaic BIPV_UPV.pdf

Oracle Applications R12 architecture

  • 1. Agenda • Technical Architecture – Architecture Diagram – 11i v/s R12 – Technology Components – Client, Application and Database Tiers – File System and Directory Structure • Swan User Interface • Multi-Org Access Control (MOAC) – Technical Considerations • Concurrent Processing – Program Definition – Restarting Request Set – OAF based Request Set Submission UI – Enhanced request security via RBAC • Oracle Application Framework – New and Enhanced Features • Oracle XML Publisher – New and Enhanced Features • Integration Repository
  • 4. 11i v/s R12 Architecture Comparison
  • 5. New and Changed Technology Components – Client Tier Moving from Jinitiator to Native Sun Java plug-in – J2SE 1.5 Supported Browsers:  Internet Explorer (IE) 6.0  Netscape 7.2  FireFox 1.5  Safari 2.0
  • 6. New and Changed Components – Application Tier Tech stack in Application tier builds on Fusion Middleware: Uses – Application Server 10.1.2 for Forms and Reports Services Replaces the 8.0.6 based 9iAS 1.0.2.2 tech stack Application Server 10.1.3 for Oracle Containers for Java (OC4J) Replaces the 8.1.7 based 9iAS 1.0.2.2 tech stack Oracle Jdeveloper 10.1.3 Following Middleware Components can be optionally integrated: Integration Services (OID 10g, BPEL Process Manager 10.1.3 etc) Identity Management (Single Sign On 10.1.2.0.2) Discoverer 10g (10.1.2.0.2) WebCache 10g (10.1.2.0.2) Portal 10.1.4 Oracle Collaboration Suite Oracle SOA Suite Oracle Master Data Management
  • 8. New and Changed Components – Database Tier 9i R2 database in 11i has been upgraded to 10gR2 (10.2.0.2) in R12 Data model enhancements – Major enhancement to Trading Community Architecture to include Suppliers and Banks. Effectively TCA now includes following parties – Customers, Suppliers, Banks and Employees. Master Data Management - Data Hubs Single source of truth. Common Repository.
  • 9. File System Changes – 11i File System 11i File System
  • 10. New R12 file system model segregates Code, Data, Configurations INST_TOP - Release 12 introduces the concept of a top-level directory for an Applications instance. File System Changes – R12 File System
  • 12. Directory Structures Data Directory – $DATA_TOP - Located in database node and contains DB files like redo logs, table spaces and datafiles. <APPS_BASE>/db/apps_st/data DB Directory – $DB_TOP – Contains Oracle_Home for 10g Database. <APPS_BASE>/db/tech_st/10.2.0 Application Top – $APPL_TOP – Located on Application tier, contains product directories and files. <APPS_BASE>/apps/apps_st/appl Common Top – $COMN_TOP – directories and files used across products like HTML files, jar files etc. <APPS_BASE>/apps/apps_st/comn Instance Home – $INST_TOP – Introduced in R12 stores all the config files, log files, SSL certificates, document root etc on Application node. <APPS_BASE>/inst/apps/<appl_context>
  • 13. Shared Application File System Application tier file system installed on a shared disk resource and is mounted from each application tier node. All nodes must be on same OS. Ability to provide any standard service from any node. Patching and maintenance to be performed once on a single node. Reduction in overall storage requirement. Simplifies addition of additional application tier node. Changes on shared file system are reflected immediately on all nodes. Global Single Instance
  • 15. Access multiple operating units within a single application responsibility Perform tasks for and across multiple operating units Enter transactions Process data View information Run reports Increase effectiveness of shared services centers Multi-Org ....To Multi-Org Access Control
  • 16. New Changes from Multi-Org ....To Multi- Org Access Control •As discussed above, security Profiles for data security oMO: Security Profile oList of operating units for a responsibility •OU field on UI oall transactions osetup data specific to OU, like transaction type •Enhanced Multi-Org Reporting and Processing •Ledger/Ledger Set parameter on accounting reports and processes •OU parameter on other standard reports and processes oFor example: submit the Payables Open Interface Import w/OU param null to import all records across all OUs
  • 17. Where and how to define a security ProfileUsing Oracle HRMS, you can define your security profile using two forms: •The Security Profile form •The Global Security Profile form that is shown here.
  • 18. Run Security List Maintenance Program Navigation: HR Responsibility  Processes and Reports  Submit Processes and Reports
  • 19. Multi-Org Profile Options Profile Value Description MO: Security Profile (New in R12) MO: Default Operating Unit (New in R12) Controls the list of operating units that a responsibility or user can access MO: Operating Unit R11i profile option that will be maintained for those products and customers not leveraging Multiple Organizations. Controls which operating unit will default when accessing an application page
  • 20. Multi-Org Preferences User Level Preferences Specify User Level Preferences Identify a subset of operating units to access Set default Operating Unit specific to that user
  • 21. Add Preferences to Sub Menu Navigation: System Administrator  Application  Menu Application Developer  Application  Menu
  • 22. To accomplish access to more than one operating unit within single responsibility –  Multi-org views have been replaced with synonyms. For example MY_TABLE will no longer be a view on MY_TABLE_ALL but a synonym pointing to MY_TABLE_ALL.  Data restriction is accomplished by assigning a Virtual Private Database (VPD) policy to the synonym. This policy allows system to dynamically generate additional restriction conditions when queries are run against the synonym. MOAC Technical Considerations
  • 23. MOAC Technical Considerations How is client_info (org context) being replaced by policy context in Release 12? Prior to R12 a. A table is created in application schema, eg: PO_HEADERS_ALL IN PO schema. b. A synonym named PO_HEADERS_ALL is created in APPS schema, referring to PO.PO_HEADERS_ALL c. Create a view PO_HEADERS in APPS schema, as "select * from po_headers_all where org_id=client_info" In R12 a. A table is created in PO Schema, named PO_HEADERS_ALL b. A synonym named PO_HEADERS_ALL is created in APPS schema, referring to PO.PO_HEADERS_ALL c. Another synonym named PO_HEADERS is created in APPS, referring to PO_HEADERS_ALL synonym d. A Row Level security is applied to PO_HEADERS, using package function MO_GLOBAL.ORG_SECURITY. e. The effect of this policy is that,whenever you access PO_HEADERS, Oracle RLS will dynamically append WHERE CLAUSE - SELECT * FROM PO_HEADERS WHERE EXISTS (SELECT 1 FROM mo_glob_org_access_tmp oa WHERE oa.organization_id = org_id)
  • 24. MOAC Technical Considerations Database Multi-Org Access Control Prior to R12 standard the org context was established using either DBMS_APPLICATION_INFO.SET_CLIENT_INFO or FND_CLIENT_INFO.SET_ORG_CONTEXT In R12 the org context is established using API MO_GLOBAL.INIT. This API accepts a single parameter “Application short name”.
  • 26. Concurrent Processing – Program Definition A new attribute in Concurrent Program definition “Operating Unit Mode” to categorize a program as MOAC enabled or not.  Single OU Concurrent Program  Multiple OU Concurrent Program  None (Null or blank value) This value can be set through Program definition OAF page in System Administration responsibility. Standard Request Submission – New Operating Unit field is displayed which has a LOV populated with operating units accessible to the user. Allows user to run programs for multiple operating units without changing responsibility.
  • 27. Concurrent Processing – Restarting Request Set Prior to R12 – If a process in the middle of request set fails, user has to fix the cause and then either run remaining processes manually or re-submit the entire set. Secondly ones a request set is submitted, user had no control whatsoever. In R12 – If a process in the middle of request set fails, user can fix the cause of failure and restart the request set from the point of failure. User can put a running request set on hold and later remove hold to continue.
  • 28. Concurrent Processing – OAF Request Set Submission UI Request Sets can now be submitted through a new OAF User Interface available in Release 12.
  • 30. OA Framework - Overview What is OA Framework?  Oracle Applications development and deployment platform for HTML-based business applications.  Composed of a set of middle-tier runtime services as well as a design-time extension to Oracle JDeveloper called the OA Extension.  Based on J2EE based Model-View-Controller architecture.
  • 31. OA Framework MVC Architecture OA Framework Model – implemented using Oracle Business Components for Java (BC4J). OA Framework View – implemented using an Oracle technology called User Interface XML (UIX). OA Framework Controller – Pure Java class implementation.
  • 32. OA Framework New Features in R12 Personalization Administration Command line personalization import/export is now available in HTML pages included in Functional Administrator Responsibility. About This Page Now includes  Last 10 patches applied on the instance  Flexfield definitions on the page  Ability to launch Admin Personalization Corporate Branding Image Corporate branding logo can be changed using profile “Corporate Branding Image For Oracle Applications” Configurable Start Page Use preferences link to set the start page that displays after login.
  • 33. Oracle XML Publisher 5.6.3 New and Enhanced Features
  • 34. Overview XML Publisher 5.6.3 Technology means business !! Business means brilliant reporting !! Business Reports common requirements –  Segregation of data and presentation  Flexible output formats  Multi-lingual reports  Effective presentation with graphics  Pre-printed stationary  Regulatory compliance
  • 35. XML Publisher Flexible Reporting Flexible Data sources Flexible Layouts Flexible Formats (output) Flexible Delivery Channels
  • 36. New Features XML Publisher 5.6.3  Data Extraction Engine  Bursting Engine  Consolidated Document Publishing  Template Enhancements  Template Manager  Integration
  • 37. XML Publisher Content in R12 Used across products from Finance to SCM to CRM 800+ seeded templates Seeded data definitions for modules like Payments Payment formats leverages XML Publisher
  • 40. XML Publisher Data Definition
  • 43. Integration Repository (iRep) Introduction R12Oracle Integration Repository –  Catalogue of all E-Business suite integration points  Acts as service broker  Shipped as part of E-Business Suite Includes screens for searching and viewing all available integration points with just a web browser. Interface Types supported –  PL/SQL APIs  Open Interface Tables  Interface views  Concurrent Programs  Java  Web Service  XML Gateway Messages  eCommerce Gateway Messages  Business Events
  • 44. Navigation: Integration Responsibility  Integration Responsibility Integration Repository Screen

Editor's Notes

  • #6: In the traditional, Forms-based Oracle Applications environment, the JVM (which in earlier releases was Oracle JInitiator) was run as part of the standard Applications sign-on process.Now,with the move to a mainly HTML-based environment, the JVM (now the J2SE Plug-in)is only invoked when a user chooses to access functions that require it, such as running a form. The Forms client applet no longer uses browser JVM for this instead uses the plug-in.
  • #7: The Oracle E-Business Suite Release 12 uses several individual components delivered as part of the Oracle Application Server suite.  These individual components include the Oracle HTTP Server (powered by Apache), PL/SQL, Forms Server, Reports Server, Workflow, and many others In particular, E-Business Suite Release 12 uses OracleAS 10g 10.1.2 for Forms &amp; Reports Services, replacing the 8.0.6-based ORACLE_HOME provided by the Oracle9i Application Server 1.0.2.2.2 in E-Business Suite Release 11i.  In addition, E-Business Suite Release 12 uses OracleAS 10g 10.1.3 for Oracle Containers for J2EE (OC4J), replacing the 8.1.7-based ORACLE_HOME provided by Oracle9i Application Server 1.0.2.2.2 in E-Business Suite Release 11i.
  • #11: Using an Instance Home provides the ability to share Applications and technology stack code among multiple instances,for example a development instance and a test instance.Equally,the centralization of configuration log files for a particular instance makes their management simpler.
  • #13: Instance Home - Provides the ability to share Applications and technology stack code among multiple instances,for example a development instance and a test instance.
  • #14: Shared APPL_TOP v/s shared application file system: Shared APPL_TOP means only APPL_TOP and COMN_TOP are shared across application tier node but in case of shared application file system, entire application tier file system is shared. Environment settings Handout.
  • #15: Now let’s take a look at the new security feature Multi-Org Access control.
  • #16: In 11i, when a user had to enter or process data for multiple operating units, he or she had to login to different responsibilities because each responsibility could only access one operating unit. So if you had a centralized payment processing center where a single user processed payments for multiple organizations, he would have to keep logging in and out of different responsibilities to process payments for a different organization or operating unit. Now in Release 12, Multi-Org Access Control enables users to access, process, and report on data for an unlimited number of operating units within a single applications responsibility.
  • #19: When you’re done with setting up your security profile, you open the Submit Request window and run the Security List Maintenance program. And this will ensure that all of your security profiles that you created will be available for assignment to your responsibilities. This is an important step to do, otherwise you will not see your security profile in the list of values when you try to assign to the MO: Security Profile profile option. So make sure you run this program and make sure it completes successfully. In the next setup step, when you set your system profile options, you will see that your newly created security profiles will be available.
  • #20: Here, we have the list of profile options related to Multiple Organizations or MO for short in Release 12. The first two are new. Actually they both existed in 11i, but they didn’t do anything. Now in Release 12, the MO Security Profile controls the list of operating units that a responsibility or user can access. So you would assign the Security Profile that you just created to this profile option. The second profile option called MO: Default Operating Unit is optional and allows you to specify a default operating unit that will be the default when you open different subledger application pages. Because users can access multiple operating units, you may want to set up a default one instead of forcing users to constantly have to choose one. When we talk about the User Preferences later, you can also specify a default operating unit at the user level. The last profile option is really for backwards compatibility and to support products that do not use Multiple Organizations. Whatever your Release 11i setting was for this will be preserved during upgrade. That leads me to my next point. If you’re happy with how you processed transactions in 11i, then when you upgrade to R12, you don’t have to do anything. You only need to define a security profile and assign it to the first profile option if you want to take advantage of this exciting feature. If you specify a security profile for the MO: Security Profile, then those products that use Multiple Organizations will ignore the MO: Operating Unit profile option. If you set the security profile at the responsibility level, then all users using that responsibility will have access to only the operating units available in the security profile. If you set the security profile at the user level, then the user will have access to only those operating units, irrespective of application responsibility that they log into. Use the MO: Default Operating Unit profile option to set the operating unit context or default operating unit when accessing an applications. The Release 11i MO: Operating Unit profile option will continue to be supported in Release 12 as not all customers or Oracle products require multiple organizations.
  • #21: Multi-Org Preferences really allows the user to control the list of operating units they have access to. So the system administrator may create a security profile that has 10 operating units assigned and assign it to the user or his/her responsibility. But, let’s say that a user only deals with 5 of them on a daily basis and he doesn’t want his work space cluttered with extraneous operating units. The user could set up Multi-Org preferences to restrict the list of OUs. And because the user has complete control over this, he can change it at anytime. In addition, the user can specify a default operating unit. Of course, this default operating unit will override the Default Operating Unit profile option.
  • #22: To enable and display Preferences in your menu, request your System Administrator to add the function, FNDMOPREFS to your menu definition. The System Administrator should use either the System Administrator or Application Developer responsibility and select the Menu (Application) option. Select your product’s menu and add the function named User Preferences (FNDMOPREFS). Above screenshot is an example using the Oracle Payables setup menu.
  • #29: Need to add screen shot.
  • #44: Was introduced in 11i10 as an additional service and was not shipped with 11i E-business suite. As an instance is patched, the repository is automatically updated with appropriate content to ensure consistency.