Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1310185
  • 博文数量: 416
  • 博客积分: 10495
  • 博客等级: 上将
  • 技术积分: 4258
  • 用 户 组: 普通用户
  • 注册时间: 2005-04-23 22:13
文章分类

全部博文(416)

文章存档

2015年(7)

2014年(42)

2013年(35)

2012年(14)

2011年(17)

2010年(10)

2009年(18)

2008年(127)

2007年(72)

2006年(23)

2005年(51)

分类: Oracle

2014-03-18 11:33:10

select fffv.function_name,
       fm.menu_name,
       fr.responsibility_key


  from fnd_form_functions_vl fffv,
       
       fnd_menu_entries_vl fmev,
       
       fnd_menus fm,
       
       fnd_responsibility fr


 where fffv.function_id = fmev.function_id
      
   and fmev.menu_id = fm.menu_id
      
   and fmev.menu_id = fr.menu_id(+)
      
   and fffv.function_name LIKE '&function_name'



2.---------------------------查询报表所属的职责
select fcpt.user_concurrent_program_name,
       
       frg.request_group_name,
       
       fr.responsibility_key


  from fnd_concurrent_programs_tl fcpt,
       
       fnd_request_group_units frgu,
       
       fnd_request_groups frg,
       
       fnd_responsibility fr


 where fcpt.concurrent_program_id = frgu.request_unit_id
      
   and frgu.request_group_id = frg.request_group_id
      
   and frg.request_group_id = fr.request_group_id
      
   and lower(fcpt.user_concurrent_program_name) like lower('&program_name')


转载:http://www.cnblogs.com/benio/archive/2010/12/31/1923185.html



阅读(621) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~