查看某个用户下面所有的职责

本文提供了一段 Oracle E-Business Suite (EBS) 中用于查询特定用户及其所分配的责任、应用信息的 SQL 脚本。该脚本通过联接多个表来获取用户名称、开始日期、结束日期、责任名称及应用程序简称等详细信息。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 转自ITPUB的脚本:

SELECT   fu.user_name,
         fu.start_date "User_Start_Date",
         fu.end_date "User_End_Date" ,
         frv.responsibility_name,
         fa.application_short_name,
         furgd.start_date "Resp_Start_Date",
         furgd.end_date "Resp_End_Date"
FROM apps.fnd_user_resp_groups_direct furgd,
         apps.fnd_user fu,
         apps.fnd_responsibility_vl frv,
         apps.fnd_application fa
WHERE    fu.user_id = furgd.user_id
     AND frv.responsibility_id = furgd.responsibility_id
     AND frv.application_id=fa.application_id
      AND fu.end_date IS NULL
     AND furgd.end_date IS NULL
     AND upper(fu.user_name)  like upper('&user_name')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值