Oracle ACE Pro
Oracle Solution Architect
Oracle E-Business Suite
Oracle Cloud Infrastructure
Oracle Fusion Middleware
Oracle Database Administration
Oracle Weblogic Administration
Oracle ACE Pro
Oracle Solution Architect
Oracle E-Business Suite
Oracle Cloud Infrastructure
Oracle Fusion Middleware
Oracle Database Administration
Oracle Weblogic Administration
We are going to create a schema similar to the APPS schema having only read-only privileges.
This select statement would generate a script that will grant almost all required permissions to a user called READONLY.
SELECT 'GRANT ' || Decode(O.object_type, 'TABLE', 'SELECT', 'VIEW', 'SELECT', 'EXECUTE') || ' ON ' || Decode(O.owner, 'PUBLIC', '', O.owner || '.') || '"' || O.object_name || '"' || ' TO MYUSER;' COMMAND FROM all_objects O WHERE O.object_type IN ( 'TABLE', 'PACKAGE', 'PACKAGE BODY', 'PROCEDURE', 'VIEW', 'FUNCTION' ) UNION SELECT 'GRANT ' || Decode(O2.object_type, 'TABLE', 'SELECT', 'VIEW', 'SELECT', 'EXECUTE') || ' ON ' || Decode(O.owner, 'PUBLIC', '', O.owner || '.') || '"' || O.object_name || '"' || ' TO READONLY;' COMMAND FROM all_objects O, all_objects O2, dba_synonyms S WHERE O.object_type = 'SYNONYM' AND O.object_name = S.synonym_name AND O2.object_name = S.table_name AND O2.object_type IN ( 'TABLE', 'PACKAGE', 'PACKAGE BODY', 'PROCEDURE', 'VIEW', 'FUNCTION' )
Now, Use the following select statement to generate a script that will create synonyms in <your_user> schema for all objects owned by APPS.
SELECT ‘CREATE SYNONYM MYUSER.’ || O.OBJECT_NAME || ‘ FOR APPS.’ || O.OBJECT_NAME || ‘;’ COMMAND FROM DBA_OBJECTS O WHERE O.Owner = ‘APPS’
Run the above two scripts as SYS user.
Step 1. Navigate to the Supplier Page
Step 2. Click on the About this page link
Step 3. Click Expand All
Step 4. You will be seeing SuppSrchVO, SupplierVO and SitesVO
Step 5. If you click on that view it will show you the query used.
To get the About this Page Link, Please ensure the below Profile option is set to Yes at site level:
The FND: Diagnostics profile option controls whether the Diagnostics button is rendered.
It also controls the display of the About this Page link.
You may also set below
Add the below responsibilities to the user:
System Administrator > Security > User > Define
1. Once done bounce the apache
2. Retest the issue
3. Migrate the solution to other environments as appropriate.
Sometimes during prepare or apply phase of ADOP, some error occurs and you wants to Restart the ADOP session.
Perform following steps.:
$adop phase=abort
Enter the APPS password:
Enter the SYSTEM password:
Enter the WLSADMIN password:
Please wait. Validating credentials…
.
.
.
.
.
.
.
.
adop phase=abort – Completed Successfully
Log file: /u01/appltest/fs_ne/EBSapps/log/adop/40/adop_20141257_01987.log
adop exiting with status = 0 (Success)
$
Log files are useful in troubleshooting issues in Oracle Applications. Below is the given list of Log file location in Oracle Applications for Startup/Shutdown, Cloning, Patching, DataBase & Apps Listener and various components in ORACLE Apps R12/11i:
Instance Top is new TOP added in R12
Startup/Shutdown error message text files like adapcctl.txt, adcmctl.txt…
Startup/Shutdown error message related to tech stack (10.1.2, 10.1.3 forms/reports/web)
Preclone log files in source instance
Database Tier
Application Tier
Clone log files in target instance
Database Tier
Apps Tier
Application Tier adpatch log
Developer (Developer/Forms & Reports 10.1.2) Patch
Web Server (Apache) patch
Database Tier opatch log
Database Tier Autoconfig log :
Application Tier Autoconfig log –
Autoconfig context file location in R12 –
All Rights Reserved