|
最初由 fanpig 发布
[B]select fu.description 用户说明,
fat.application_name 模块,
FFV.RESPONSIBILITY_NAME 职责,
fcpv.user_concurrent_program_name 程序名称,
fcpv.description 程序说明,
fcpv.concurrent_program_name 简称,
fefv.executable_name 可执行名称,
frg.request_group_name 请求组,
--frg.application_id,
frg.description 请求组描述,
frg.request_group_code 请求组代码
from fnd_executables_form_v fefv,
fnd_concurrent_programs_vl fcpv,
fnd_request_groups frg,
FND_REQUEST_GROUP_UNITS frgu ,
FND_RESPONSIBILITY_VL FFV,
fnd_application_tl fat,
fnd_user fu
where fefv.executable_id=fcpv.executable_id
and fcpv.concurrent_program_id=frgu.request_unit_id
and frgu.request_group_id=frg.request_group_id
AND FFV.REQUEST_GROUP_ID=FRG.REQUEST_GROUP_ID
and fat.application_id=ffv.application_id
and fcpv.ENABLED_FLAG='Y'
AND NVL(FFV.END_DATE,SYSDATE+1)>SYSDATE
and fu.user_id=fcpv.CREATED_BY
order by fat.application_name,ffv.RESPONSIBILITY_NAME [/B]
多谢分享,周一回公司试试 |
|