Hello,
Our current version is Apps 10 Upd 9.
I recently created two custom projections to be able to utilize REST to load data. One of them worked flawlessly with no extra interaction.
The second one threw a ORA-6550 error. Upon looking into this error I found this in the odp-default-log.log file:
com.ifsworld.fnd.common.exceptions.DatabaseException: Failed to execute the generated database statement
…. more stacktrace not displayed …..
Caused by: java.sql.SQLException: ORA-06550: line 1, column 35:
PLS-00302: component 'NEW__' must be declared
ORA-06512: at "CHIE1APP.PROJECTION_CONFIG_UTIL_API", line 174
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
ORA-06512: at "CHIE1APP.PROJECTION_CONFIG_UTIL_API", line 156
ORA-06512: at "CHIE1APP.PROJECTION_CONFIG_UTIL_API", line 179.
Investigating that API it is trying to call my logical unit _CLP.New__ method. I have confirmed that the _CLP package is created and has the .New__ method. There are no compile errors on the _CLP package or BODY. On line 154 of the PROJECTION_CONFIG_UTIL_API it retrieves the base package. If it passes what the lu_name_ is for the logical unit it should have returned the correct base package.
Since the first one is working perfectly I’m not sure what I am able to do about this. I did try deleting the projection and creating it again but no luck.
Has anyone ever experienced this?
Thanks