Wednesday, 21 June 2017

1) Need Document for Adding custom attributes to Target application for reconciliation
2) Password synchronization
3) Entitlements
4) Java code for Schedulers/Adapters/Event Handlers
1) Event Handlers
2) Web Services
3) Certification process
4) Expecting OIM Related docs ( Java API cheat sheet, custom attribute creation at target during the reconciliation)
AD setup

Wednesday, 26 October 2016

-Djava.security.manager -DXL.HomeDir=. -Djava.security.policy=config\xl.policy -Djava.security.auth.login.config=config\authwl.conf -Dlog4j.configuration=config\log.properties -Djava.naming.provider.url=t3://idm.oracle.com:7701



eclipse error:

eclipse: cairo-misc.c:380: _cairo_operator_bounded_by_source: Assertion `NOT_REACHED' failed."

OIM Errors:

java.lang.NoClassDefFoundError: oracle/jrf/PortabilityLayerException

NoClassDefFoundError: org/springframework/jndi/JndiTemplate

Wednesday, 28 September 2016

To Set the ANT_HOME Variable on a Linux


In your home folder, open the .bash_profile file in the root directory.

Add the following lines to the file, substituting the directory where you installed Ant:

 ANT_HOME=/apache-install-dir/apache-ant-version
ANT_OPTS="-Xms256M -Xmx512M"
PATH=$PATH:$HOME/bin:$ANT_HOME/bin
export ANT_HOME ANT_OPTS PATH
To test the setting, type ant at a command prompt and press Return.

If a Build not found error message appears, you have correctly installed Ant.

If you do not see an error message, check the environment variable settings and make sure they are pointing to the correct directory locations.

Friday, 11 March 2016

How to list tables which are under TABLESPACE

select owner, table_name,tablespace_name

   from dba_tables

  where tablespace_name='DEV_OIM';

( or )



select table_name ,tablespace_name 

from user_tables

where tablespace_name='YOUR TABLE SPACE NAME';



Saturday, 26 December 2015

List of Packages that needs install before installing IDM product

binutils-2.20.51.0.2-5.28.el6.x86_64
compat-libcap1-1.10-1.x86_64
compat-libcap1-1.10-1.i686
compat-libstdc++-33-3.2.3-69.el6 for x86_64
compat-libstdc++-33-3.2.3-69.el6 for i686
gcc-4.4.4-13.el6.x86_64
gcc-c++-4.4.4-13.el6.x86_64
glibc-2.12-1.7.el6 for x86_64
glibc-devel-2.12-1.7.el6 for x86_64
glibc-2.12-1.7.el6 for i686
glibc-devel-2.12-1.7.el6 for i686
libaio-0.3.107-10.el6 for x86_64
libaio-0.3.107-10.el6 for i686
libaio-devel-0.3.107-10.el6 for x86_64
libaio-devel-0.3.107-10.el6 for i686
libgcc-4.4.4-13.el6 for x86_64
libgcc-4.4.4-13.el6 for i686
libstdc++-4.4.4-13.el6 for x86_64
libstdc++-4.4.4-13.el6 for i686
libstdc++-devel-4.4.4-13.el6 for x86_64
libstdc++-devel-4.4.4-13.el6 for i686
libXext for i386
libXtst for i386
libXi for i386
openmotif-2.2.3 for x86_64
openmotif22-2.2.3 for x86_64
redhat-lsb-4.0-3.el6 for x86_64
sysstat-9.0.4-11.el6

Monday, 7 December 2015

list of tables used in oim

Connect to the database:


sqlplus username/password@database-name
To list all tables owned by the current user, type:


select tablespace_name, table_name from user_tables;
To list all tables in a database:


select tablespace_name, table_name from dba_tables;
To list all tables accessible to the current user, type:


select tablespace_name, table_name from all_tables;
You can find more info about views all_tables, user_tables, and dba_tables in Oracle Documentation. To describe a table, type:


desc <table_name>

Sunday, 13 September 2015

How to find schema version of fusion middleware components

 SQL>Select * from schema_version_registry;