首页  ·  知识 ·  数据库
OracleEBS11i职责丢失
网友   http://hi.baidu.com/%B2%B7%D1%C7%C5%F3/blog/item/2d2a61009969980e1c958344.html    编辑:德仔   图片来源:网络
系统出现了职责丢失的现像,登陆后不显示相关职责,进入Form后职责也没有。以前没有过,只是在打过HR的Patch后才出现在,后来在网上查找发现有一种
系统出现了职责丢失的现像,登陆后不显示相关职责,进入Form后职责也没有。以前没有过,只是在打过HR的Patch后才出现在,后来在网上查找发现有一种解决办法,记录如下,

1.select ura.user_name, ura.role_name
from wf_local_user_roles ur, wf_user_role_assignments ura
where ur.user_name = ura.user_name
and ur.role_name = ura.role_name
and ura.relationship_id = -1
and ((ur.effective_start_date is null or ur.effective_start_date <>
ura.effective_start_date)
or (ur.effective_end_date is null or ur.effective_end_date <> ura.effective_end_date)) ;

2.UPDATE WF_USER_ROLE_ASSIGNMENTS
set effective_end_date = to_date(null)
where rowid in (select ura.rowid
from wf_local_user_roles ur, wf_user_role_assignments ura
where ur.user_name = ura.user_name
and ur.role_name = ura.role_name
and ura.relationship_id = -1
and ( (ur.effective_start_date is null or ur.effective_start_date <> ura.effective_start_date)
or (ur.effective_end_date is null or ur.effective_end_date <> ura.effective_end_date)));

3.然后做如下动作
System Administrator responsibility 》request 》 Workflow Directory Services User/Role Validation concurrent program.

本文作者:网友 来源: http://hi.baidu.com/%B2%B7%D1%C7%C5%F3/blog/item/2d2a61009969980e1c958344.html
CIO之家 www.ciozj.com 微信公众号:imciow
    >>频道首页  >>网站首页   纠错  >>投诉
版权声明:CIO之家尊重行业规范,每篇文章都注明有明确的作者和来源;CIO之家的原创文章,请转载时务必注明文章作者和来源;
延伸阅读