Tag Archives: aol

Hello Friends, Using this article, i wanted to give brief on how we can exclude some forms/ function as security in oracle applications. plz see i am trying to use two different way to get the same functionality. There are … Continue reading

Hello Friends, here i am posting some of basic oracle applications questions , will try to collect more and put in future posts, here i am putting quite easy and basic questions. If you like to know Questions of any … Continue reading

Oracle Applications – Interview Questions (All Modules) Question: What are the key benefits of forms personalization over custom.pll? Answer: Multiple users can develop forms personalization at any given point in time. It is fairly easy to enable and disable forms … Continue reading

Hello Friends, Upon requests on some of my friends, i am posting few more generic oracle applications’ questions. hope this will give you overview of generic features. do share your feedback if these are good n useful. what is a … Continue reading

hello, a very useful small piece of sql, quite useful whilte troubleshootings. What is the SQL to determine what request groups and concurrent program is assigned to? select request_group_name from FND_REQUEST_GROUPS where REQUEST_GROUP_ID =(SELECT request_group_id FROM FND_REQUEST_GROUP_UNITS WHERE REQUEST_UNIT_ID=(select CONCURRENT_PROGRAM_ID … Continue reading

Profile Option values for all levels using SQL*Plus.

How to list E-Business Suite Profile Option values for all levels using SQL*Plus.

Connect to the eBusiness Suite database using APPS schema name

select p.profile_option_name SHORT_NAME,

   n.user_profile_option_name NAME,

   to_char(v.last_update_date,‘DD-MON-RR’) “Last Updated”,

         decode(v.level_id,

    10001, ‘Site’,

    10002, ‘Application’,

    10003, ‘Responsibility’,

    10004, ‘User’,

    10005, ‘Server’,

    10007, ‘SERVRESP’,

  ‘UnDef’) LEVEL_SET,

  decode(to_char(v.level_id),

    ’10001′, ,

          ’10002′, app.application_short_name,

          ’10003′, rsp.responsibility_key,

          ’10005′, svr.node_name,

          ’10006′, org.name,

          ’10004′, usr.user_name,

          ’10007′, ‘Serv/resp’,

                ‘UnDef’) “CONTEXT”,

  v.profile_option_value VALUE

  from fnd_profile_options p,

     fnd_profile_option_values v,

     fnd_profile_options_tl n,

     fnd_user usr,

     fnd_application app,

     fnd_responsibility rsp,

     fnd_nodes svr,

     hr_operating_units org

  where p.profile_option_id = v.profile_option_id (+)

  and p.profile_option_name = n.profile_option_name

  and upper(n.user_profile_option_name) like upper(‘%&profile_name%’)

  and    usr.user_id (+) = v.level_value

  and    rsp.application_id (+) = v.level_value_application_id

  and    rsp.responsibility_id (+) = v.level_value

  and    app.application_id (+) = v.level_value

  and    svr.node_id (+) = v.level_value

  and    org.organization_id (+) = v.level_value

  order by short_name, level_set;

 

Thanks – Shivmohan Purohit