概述
select fu.user_name 用户名,
frt.responsibility_name 职责,
fcr.completion_text 完成,
fcr.RESPONSIBILITY_ID 职责号,
fcr.actual_completion_date 完成日期,
fcr.request_id 请求号,
fcrsv.USER_CONCURRENT_PROGRAM_NAME 使用并发程序名
from fnd_concurrent_requests fcr,
fnd_responsibility_tl frt,
fnd_user fu,
FND_CONC_REQ_SUMMARY_V fcrsv
where fcr.RESPONSIBILITY_ID = frt.RESPONSIBILITY_ID
and fcr.actual_completion_date <= sysdate - 1
and fu.user_id = fcr.requested_by
and fcrsv.REQUEST_ID = fcr.request_id
and fu.user_name = 'ZMSUP006'
and fcr.actual_completion_date >= sysdate -3-- ;--两天内
order by fcr.actual_completion_date;
最后
以上就是昏睡小笼包为你收集整理的EBS 查找用户在某段时间内运行了什么请求的全部内容,希望文章能够帮你解决EBS 查找用户在某段时间内运行了什么请求所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复