首页 > 其他 > 详细

通过接口增加或失效职责

时间:2014-03-19 19:12:09      阅读:433      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
--更改职责
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
                     );
bubuko.com,布布扣

通过接口增加或失效职责,布布扣,bubuko.com

通过接口增加或失效职责

原文:http://www.cnblogs.com/toowang/p/3611412.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!