zoukankan      html  css  js  c++  java
  • 通过接口增加或失效职责

    --更改职责
    fnd_user_resp_groups_api.update_assignment(user_id              => v_user_id
                                                 ,responsibility_id                        => v_resp_id
                                                 ,responsibility_application_id       => v_appl_id
                                                 ,start_date                                => v_user_info.start_date
                                                 ,end_date                                 => sysdate
                                                 ,description                               => ''
                                                 );
    --增加职责
    fnd_user_resp_groups_api.upload_assignment(user_id              => v_user_id
                                                 ,responsibility_id                        => v_resp_id
                                                 ,responsibility_application_id       => v_appl_id
                                                 ,start_date                                => v_user_info.start_date
                                                 ,end_date                                 => sysdate
                                                 ,description                               => ''
                                                 );
    --增加职责
    fnd_user_pkg.addresp(username         => v_user_info.user_name 
                                        ,resp_app      => v_appL_short_name
                                        ,resp_key      => v_user_info.resp_key
                                        ,description   => ''
                                        ,start_date    => v_user_info.start_date
                                        );
    --失效职责(失效日期为当天)
    fnd_user_pkg.DelResp(username       => v_user_name
                         ,resp_app      =>  v_appl_short_name
                         ,resp_key      =>  v_resp_key
                         ,security_group =>  v_sec_group
                         );
  • 相关阅读:
    快速排序
    优先队列
    堆排序
    树、二叉树基础
    分治法
    递归算法详细分析
    算法基础
    Linux文件系统详解
    fs/ext2/inode.c相关函数注释
    块设备的读流程分析
  • 原文地址:https://www.cnblogs.com/toowang/p/3611412.html
Copyright © 2011-2022 走看看