Issue: Unable to Compile custom database schema objects after upgrade to EBS12.2
Error: SQL Error: ORA-38818: illegal reference to editioned object
Solution: The reason was that this owner of these objects was missing ENABLE EDITIONS privilege. I granted the required privilege to user by executing below command.
alter user <USER/SCHEMA_NAME> enable editions;
Example: alter user KRAPEX enable editions;
Post a Comment