How to unlink an account from Oraclle Identity Manager (OIM) to Active Directory (AD)
Question: How can we unlink an account from OIM to AD without deleting or disabling.?
Is there a way?
Answer
Soft revoke. Set the ost_key in the OIU table to the value of revoked and the ORC_STATUS value to X in the ORC table.
Example:
update oiu set ost_key = (select ost_key from ost where obj_key in
( select obj_key from obj where obj_name like 'AD User' )
and ost_status like 'Revoked') where ORC_KEY = '7825';
commit;
update orc set orc_status='X' where orc_key = '7825';
commit;
Is there a way?
Answer
Soft revoke. Set the ost_key in the OIU table to the value of revoked and the ORC_STATUS value to X in the ORC table.
Example:
update oiu set ost_key = (select ost_key from ost where obj_key in
( select obj_key from obj where obj_name like 'AD User' )
and ost_status like 'Revoked') where ORC_KEY = '7825';
commit;
update orc set orc_status='X' where orc_key = '7825';
commit;
Comments
Post a Comment