SELECT 
         --rg.application_id,
         --rg.request_group_id,
         --unit_application_id,
         --request_unit_id,
         --request_unit_type,
         request_group_name,
         --rg.description rg_desc,
         cp.concurrent_program_name,
         cpt.user_concurrent_program_name,
         --cpt.description ccp_desc,
         fr.responsibility_key,
         frt.responsibility_name
    FROM fnd_request_group_units rgu,
         fnd_request_groups rg,
         fnd_concurrent_programs cp,
         fnd_concurrent_programs_tl cpt,
         fnd_responsibility fr,
         fnd_responsibility_tl frt
   WHERE     1 = 1
         AND rg.request_group_id = rgu.request_group_id
         AND rgu.request_unit_id = cp.concurrent_program_id
         AND cp.concurrent_program_id = cpt.concurrent_program_id
         AND rg.request_group_id = fr.request_group_id
         AND frt.responsibility_id = fr.responsibility_id
         --and upper(rg.request_group_name)  like upper(:REQ_GRP_NAME)
         --and upper(cpt.user_concurrent_program_name) like upper(:CCP_FULL_NAME)
         AND cp.concurrent_program_name LIKE '%XX_OM_056%'
ORDER BY fr.responsibility_key

EBS查看Report程式所挂在的. 报表名. 组. 责任

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-06
  • 2021-05-22
  • 2021-12-20
  • 2021-05-18
  • 2021-08-24
  • 2022-12-23
猜你喜欢
  • 2021-09-24
  • 2022-02-01
  • 2022-12-23
  • 2022-12-23
  • 2021-10-02
  • 2021-07-04
相关资源
相似解决方案