• 打印报表以显示具有给定责任的用户-FNDSCRUR责任用户


      select --&p_hint
             distinct
             user_name,
             decode (
                greatest (u.start_date,
                          ur.start_date,
                          r.start_date,
                          to_date ('1000-01-01', 'YYYY-MM-DD')),
                to_date ('1000-01-01', 'YYYY-MM-DD'), '',
                to_char (greatest (u.start_date, ur.start_date, r.start_date)))
                resp_start_date,
             decode (
                least (nvl (u.end_date, to_date ('4712-01-01', 'YYYY-MM-DD')),
                       nvl (ur.end_date, to_date ('4712-01-01', 'YYYY-MM-DD')),
                       nvl (r.end_date, to_date ('4712-01-01', 'YYYY-MM-DD'))),
                to_date ('4712-01-01', 'YYYY-MM-DD'), '',
                to_char (
                   least (nvl (u.end_date, nvl (ur.end_date, r.end_date)),
                          nvl (ur.end_date, nvl (u.end_date, r.end_date)),
                          nvl (r.end_date, nvl (u.end_date, ur.end_date)))))
                resp_end_date,
             s.security_group_name
             --        , u.description
             , rt.responsibility_name,
             rt.description
        from fnd_user u,
             fnd_user_resp_groups_all ur,
             fnd_responsibility r,
             fnd_security_groups_vl s,
             fnd_responsibility_tl rt
       where     1 = 1
             and rt.responsibility_id = r.responsibility_id
             and rt.application_id = r.application_id
             --AND r.application_id    = :application_id
             --  and   r.responsibility_id = :responsibility_id
             and user_name = 'QUANWEIRU'
             and ur.responsibility_application_id = r.application_id
             and ur.responsibility_id = r.responsibility_id
             and u.user_id = ur.user_id
             and ur.security_group_id = s.security_group_id
    order by user_name, security_group_name

  • 相关阅读:
    Windows 下ftp命令基本使用
    Oracle学习笔记:oracle和serverver在过程sql中通过select对变量进行赋值的区别
    分享最新36款高质量免费英文字体
    分享31个漂亮的矢量背景素材
    30个使用大自然元素设计的 Logo 欣赏
    分享5款精美的WordPress免费主题
    分享最新40个很不错的 PSD 资源
    WordPress精美免费主题分享系列之杂志风格篇
    分享25个很棒的网页设计教程和资源网站
    分享50个 CSS3 最佳应用示例
  • 原文地址:https://www.cnblogs.com/quanweiru/p/5229686.html
Copyright © 2020-2023  润新知