1

我们有一个适用于 Oracle EBS 的解决方案,它处理 Oracle EBS 套装中的用户以及与他们相关的角色和责任。我们曾经从FND_USER和其他相关表中获取数据。

我们创建了一个访问受限的用户,并创建了一个同义词来从 FND_user 表中读取数据。
同义词创建成功,但是当我们使用:Select * from FND_USER以创建的用户登录时获取数据时,我们收到以下错误:

ORA-00980: 同义词翻译不再有效 00980. 00000 - “同义词翻译不再有效”

在版本中为用户提供了相同的权限,12.2.4并且工作正常。

使用以下命令创建同义词:

CREATE OR REPLACE SYNONYM FND_USER for APPS.FND_USER; 

我们创建了一个用户并分配了一个包含不同权限的角色,如下所述

管理员权限 1.Oracle 包上的权限: Ans:包具有调用者权限。

create role ${new role};

create user ${new user} identified by ${password}; 

grant create session to ${new user}; 

grant create synonym to ${new user}; 

grant ${new role} to ${new user}; 

将权限授予在上述步骤中创建的新角色(${new role}):

grant select on APPS.FND_PRODUCT_GROUPS to ${new role}; 

grant select on APPS.FND_USER to ${new role}; 

grant select on SYS.DBA_USERS to ${new role}; 

grant select on APPS.FND_RESPONSIBILITY_VL to ${new role};

grant select on APPS.FND_APPLICATION_VL to ${new role}; 

grant select on APPS.FND_DATA_GROUPS to ${new role}; 

grant select on APPS.FND_USER_RESP_GROUPS_ALL to ${new role}; 

grant select on DUAL to ${new role}; 

grant select on APPS.PER_ALL_PEOPLE_F to ${new role}; 

grant select on APPS.RA_CUSTOMERS to ${new role}; 

grant select on APPS.FND_MENUS to ${new role}; 

grant select on APPS.FND_REQUEST_GROUPS to ${new role};

grant select on APPS.FND_APPLICATION to ${new role}; 

grant select on APPS.FND_DATA_GROUP_UNITS to ${new role}; 

grant select on APPS.FND_APPLICATION_TL to ${new role}; 

grant select on APPS.FND_RESPONSIBILITY to ${new role}; 

grant select on APPS.WF_ROLES to ${new role};

grant select on APPS.WF_USER_ROLES to ${new role}; 

grant select on APPS.WF_LOCAL_ROLES to ${new role}; 

grant select on APPS.WF_ALL_ROLES_VL to ${new role}; 

grant select on APPS.WF_ROLE_HIERARCHIES to ${new role}; 

grant select on APPS.FND_REQUEST_GROUP_UNITS to ${new role}; 

•由于包具有调用者权限,我们正在执行以下操作:

grant execute on APPS.SP_XXX to ${new role}; 

其中 xxx 包是 FND_USER_PKG、FND_RESPONSIBILITY_PKG、WF_LOCAL_SYNCH、FND_WEB_SEC 或 FND_GLOBAL。

例如,将 APPS.SP_FND_USER_PKG 上的执行权限授予 ${new role};

3.使用新用户名${new user}登录并创建以下同义词:

create synonym FND_PRODUCT_GROUPS for APPS.FND_PRODUCT_GROUPS; 

create synonym FND_USER for APPS.FND_USER; 

create synonym DBA_USERS for SYS.DBA_USERS; 

create synonym FND_RESPONSIBILITY_VL for APPS.FND_RESPONSIBILITY_VL; 

create synonym FND_APPLICATION_VL for APPS.FND_APPLICATION_VL; 

create synonym FND_DATA_GROUPS for APPS.FND_DATA_GROUPS; 

create synonym FND_USER_RESP_GROUPS_ALL for APPS.FND_USER_RESP_GROUPS_ALL; 

create synonym PER_ALL_PEOPLE_F for APPS.PER_ALL_PEOPLE_F; 

create synonym RA_CUSTOMERS for APPS.RA_CUSTOMERS; 

create synonym FND_MENUS for APPS.FND_MENUS; 

create synonym FND_REQUEST_GROUPS for APPS.FND_REQUEST_GROUPS; 

create synonym FND_APPLICATION for APPS.FND_APPLICATION; 

create synonym FND_RESPONSIBILITY for APPS.FND_RESPONSIBILITY; 

create synonym FND_APPLICATION_TL for APPS.FND_APPLICATION_TL;

create or replace synonym FND_DATA_GROUP_UNITS for 
APPS.FND_DATA_GROUP_UNITS; 

create or replace synonym WF_USER_ROLES for APPS.WF_USER_ROLES; 

create or replace synonym WF_ROLES for APPS.WF_ROLES; 

create or replace synonym WF_LOCAL_ROLES for APPS.WF_LOCAL_ROLES; 

create or replace synonym WF_ROLE_HIERARCHIES for APPS.WF_ROLE_HIERARCHIES;

create or replace synonym WF_ALL_ROLES_VL for APPS.WF_ALL_ROLES_VL; 

create synonym FND_REQUEST_GROUP_UNITS for APPS.FND_REQUEST_GROUP_UNITS;

•由于包具有调用者权限,我们正在执行以下操作

create or replace synonym xxx for APPS.SP_XXX; 

其中 xxx 包是 FND_USER_PKG、FND_RESPONSIBILITY_PKG、WF_LOCAL_SYNCH、FND_WEB_SEC 或 FND_GLOBAL。

例如,

create or replace synonym FND_USER_PKG for APPS.SP_FND_USER_PKG;
4

1 回答 1

0

比为您需要查询的每个用户和 EBS 表创建额外的同义词更有效的是,改为使用现有的 APPS 同义词。这可以通过将默认模式切换到 APPS 来完成,例如使用这样的登录触发器(将用户名 apps_query 替换为您的用户名)

create or replace trigger apps.apps_query_logon_trg
after logon on apps_query.schema
begin
  execute immediate 'alter session set current_schema=apps';
end;
/
于 2018-09-13T10:16:50.030 回答