Tag Archives: OID
Error WWC-41417 Oracle Portal user cannot login
This note apply to Oracle Portal 10.1.4. When a user is deleted then re-created in OID, the internally generated orclguid value for the user entry changes. Portal stores the orclguid value for the user in the Portal wwsec_person$.guid field and if the value stored does not match the orclguid value in OID then the […]
Materialized View with OID users data
Sometimes you need access users data of OID to integrate with other systems, follow bellow how to do: 1. Create Types : CREATE OR REPLACE TYPE LDAP_USU_TABLE is table of LDAP_USU_ROW; / CREATE OR REPLACE TYPE LDAP_USU_ROW as object (login varchar2(200), name varchar2(200), mail varchar2(200), phone varchar2(200)); / […]