我是靠谱客的博主 昏睡小笼包,这篇文章主要介绍EBS 查找用户在某段时间内运行了什么请求,现在分享给大家,希望可以做个参考。

  
  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内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(112)

评论列表共有 0 条评论

立即
投稿
返回
顶部