select a.responsibility_name,
       b.prompt,
       f.user_concurrent_program_name
  
from fnd_responsibility_vl      a,
       fnd_menu_entries_vl        b,
       fnd_form_functions_vl      c,
       fnd_request_groups         d,
       fnd_request_group_units    e,
       fnd_concurrent_programs_vl f
 
where a.menu_id = b.menu_id
   
and b.function_id = c.function_id
   
and c.parameters like '%' || d.request_group_code || '%'
   
and d.application_id = e.application_id
   
and d.request_group_id = e.request_group_id
   
and e.unit_application_id = f.application_id
   
and e.request_unit_id = f.concurrent_program_id
   
and f.user_concurrent_program_name like '%杂项出入库报表%'


相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-04-27
  • 2021-09-03
  • 2021-12-03
  • 2021-11-19
  • 2022-12-23
  • 2021-11-29
猜你喜欢
  • 2022-12-23
  • 2021-09-24
  • 2021-06-21
  • 2021-09-28
  • 2021-07-04
  • 2021-06-01
相关资源
相似解决方案