Re: 12.2.4 Remove custom application registered using the Application>Register screen
Posted by ErmanArslansOracleBlog on Mar 20, 2015; 10:12pm
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/12-2-4-Remove-custom-application-registered-using-the-Application-Register-screen-tp193p215.html
Also in note Creating a Custom Application in Oracle E-Business Suite Release 12.2 (Doc ID 1577707.1);
it says;
Database objects such as tables, indexes, and sequences should be created in the XXMZ schema. You then need to:
a) Grant all privilege from each custom data object to the APPS schema.
For example, logged in as the XXMZ user:
SQL>grant all privileges on myTable to apps;
b) Create a synonym in APPS for each custom data object
For example, logged in as the APPS user:
SQL>create synonym myTable for XXMZ.myTable;>
Please check the note above.