select a.responsibility_name,
       b.user_concurrent_program_name,
       b.concurrent_program_name
  
from fnd_responsibility_vl      a,
       fnd_concurrent_programs_vl b,
       fnd_request_group_units    c
 
where a.application_id = c.application_id
   
and a.request_group_id = c.request_group_id
   
and b.application_id = c.unit_application_id
   
and b.concurrent_program_id = c.request_unit_id
   
and b.user_concurrent_program_name like '%杂项出入库报表%'


相关文章:

  • 2021-12-04
  • 2021-08-28
  • 2022-12-23
  • 2022-12-23
  • 2021-05-14
  • 2021-10-13
  • 2021-12-03
  • 2021-11-19
猜你喜欢
  • 2022-12-23
  • 2021-09-24
  • 2021-06-01
  • 2021-04-27
  • 2021-05-20
  • 2021-09-03
相关资源
相似解决方案