EBS Web 登录职责列表不显示

问题信息如下图:


原因有可能是因为刚刚打过补丁:27308923

解决方法:

参考文档:
How To Fix Missing Responsibilities For A User (文档 ID 429852.1)


需要提交请求:
a. "Workflow Directory Services User/Role Validation" Parameters : 100000, Yes, No, No
b. "Workflow Directory Services User/Role Validation" Parameters : 100000, No, Yes, No   


其他了解文档:
How To Start The Workflow Deferred Agent Listener And Workflow Java Deferred Agent Listener? (文档 ID 548918.1)

Seeded WFVER.sql How To Run, Check The Version, and Health Of Workflow Installed On The Server (文档 ID 1011379.102)

解决方法提交请求:
declare
l_request_id number;

begin
fnd_global.APPS_INITIALIZE(user_id => 0,
resp_id => 20420,
resp_appl_id => 1);

l_request_id := fnd_request.submit_request(application => 'FND',
program => 'FNDSCAUS', --请求名称
description => '',
start_time => to_char(SYSDATE,
'yyyy-mm-dd hh24:mi:ss'), --请求运行时间
sub_request => FALSE,
argument1 => 10000,
argument2 => 'Yes',
argument3 => 'No', --是否将误差过账至暂记账
argument4 => 'No' --起始日期
);
IF l_request_id = 0 OR l_request_id IS NULL THEN
dbms_output.put_line('日记账导入出错!');
ELSE
COMMIT;
dbms_output.put_line('请求ID:' || l_request_id);
END IF;
end;



(笔者原创文章,转载请注明出处: https://blog.csdn.net/LFCuiYs)谢谢!

猜你喜欢

转载自blog.csdn.net/lfcuiys/article/details/80838981