Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How do you access apps.fnd_profile package from your apex custom schema in EBS r12.1x

APEX4EBSMar 15 2014

I was doing some reading on the forum and noticed that a few posts on this topic did not really answer the question.

The answer is : (MUST RUN AS APPS)

  • grant execute on fnd_profile to {custom_apex_schema}
  • grant execute on FND_CORE_LOG to {custom_apex_schema}
  • grant execute on FND_GLOBAL to {custom_apex_schema}
  • grant select on fnd_profile_option_values to {custom_apex_schema}
  • grant select on fnd_profile_options to {custom_apex_schema}
  • create or replace synonym {custom_apex_schema}.fnd_profile_option_values for applsys.fnd_profile_option_values;
  • create or replace synonym {custom_apex_schema}.fnd_profile_options for applsys.fnd_profile_options;
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 12 2014
Added on Mar 15 2014
0 comments
627 views