Showing posts with label OID. Show all posts
Showing posts with label OID. Show all posts

Monday, 25 August 2014

EBS - OID Integration

EBS - OID Derigster

Assumption EBS R12
OID 11g

Deregister SSO With EBS.

$FND_TOP/bin/txkrun.pl -script=SetSSOReg -deregister=yes

Remove References in EBS.

$FND_TOP/bin/txkrun.pl -script=SetSSOReg -removereferences=yes

#bearMan

Monday, 18 August 2014

OID: Context Initialization Error

ldapsearch


Context Initialization Error

You need to set your ORACLE_HOME to where you installed OID

an easy way on linux to do this is to firstly locate ldapsearch and then set the ORACLE_HOME to the path.

$ locate ldapsearch
/u01/app/oracle/product/fmw/Oracle_IDM1/bin/ldapsearch

$ export ORACLE_HOME=/u01/app/oracle/product/fmw/Oracle_IDM1

Then try run it again

#bearMan

Monday, 12 May 2014

LDIF Modify Group - Add New Members

LDIF Modify Group - Add New Members

dn: cn=iFACTORY,cn=groups,dc=MyCompany,dc=com
changetype: modify
add: uniquemember
uniquemember: cn=user1,cn=users,dc=MyCompany,dc=com
uniquemember: cn=user2,cn=users,dc=MyCompany,dc=com
uniquemember: cn=user3,cn=users,dc=MyCompany,dc=com

#bearMan, saving Myself Time

Wednesday, 11 December 2013

OID - unable to locate message file: ldap.msb

unable to locate message file: ldap<language>.msb

The resolution to this error is to
export ORACLE_HOME=<Instance Path>

Example
export ORACLE_HOME=/u01/app/oracle/Oracle_IDM1/

#bearMan