s_appserverid_authentication
By default in 11.5.10, this is set to SECURE.
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
s_appserverid_authentication
By default in 11.5.10, this is set to SECURE.
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.
It’s a Single Node Installation which means all the Database Stack, Application Stack and Middleware Stack will be on the same server.
First of all, you need to download the media of Oracle E-Business Suite R12.2.0 from https://edelivery.oracle.com.
You can Either install your Application on StandAlone Server or you can create a VM for your installation.
All Rights Reserved