PLS:00201: identifier 'FND_FILE.LOG' must be declared


Solution steps.

 SQL> show user;

USER is "APPS"

SQL>GRANT execute ON APPS.FND_FILE TO cust_schema;

SQL> show user;

USER is "cust_schema"

SQL>

SQL> CREATE OR REPLACE SYNONYM FND_FILE FOR APPS.FND_FILE;

Synonym created.


I hope issue has been resolved.

 

No comments:

ORA-00059: Maximum Number Of DB_FILES Exceeded in 19C database

When I am adding datafile to my 19C database facing the below error. SQL> alter tablespace DATA  add datafile '/u01/data/data15.dbf&#...