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
APP-FND-01542 : This Application Server is not authorized to access this system. Please contact your system administrator.
Yes, Oracle Label Security (OLS) can be used with EBS 12.2. It can also be used for earlier EBS releases such as EBS 12.1 and 12.0.
Oracle Label Security is an optional database-level technology for developing customized security schemes. It is possible to use this technology to customize EBS 12.2.
There is no documentation for using this technology with EBS 12.2. The principles described in the following note for EBS 11i are generally-applicable to customizing later EBS releases such as EBS 12.1 and 12.2:
What are the support implications of using OLS with EBS?
This is a technology used for customizing EBS. The standard support implications for customizations apply to customizations created with OLS:
Related Articles
Source: https://blogs.oracle.com/stevenchan/can-oracle-label-security-be-used-with-ebs-122
First find the Invalid Objects in the Database by below given query.
SELECT COUNT(*)
FROM DBA_OBJECTS
WHERE STATUS = ‘INVALID’;
For a more detailed query, use the following script :
SELECT OWNER, OBJECT_TYPE, COUNT(*)
FROM DBA_OBJECTS
WHERE STATUS = ‘INVALID’
GROUP BY OWNER, OBJECT_TYPE;
To recompile an individual object, connect to SQL*PLUS as the owner of the object (generally apps) and use one of the following depending on the object type :
alter package <package_name> compile; (package specification)
alter package <package_name> compile body; (package body)
alter view <view_name> compile; (view)
If the object compiles with warnings, use either of the following to see the errors that caused the warnings :
show errors
OR
select * from user_errors where name = ‘<OBJECT_NAME>’;
1. Login OS with APPS owner.
2. Start the ADADMIN Utility from the Unix prompt with this command :
$adadmin
3. Under the Maintain Applications Database Objects Menu, select Compile APPS schema(s)
All Rights Reserved