Monday, February 20, 2017

Friday, February 10, 2017

OIM server version and patches

  1. export ORACLE_HOME=/app/Middleware/Oracle_IDM1
  2. cd $ORACLE_HOME/OPatch/
  3. ./opatch lsinventory

output will be like:

Oracle Interim Patch Installer version 11.1.0.11.0
Copyright (c) 2017, Oracle Corporation.  All rights reserved.


Oracle Home       : /app/Middleware/Oracle_IDM1
Central Inventory : /app/oraInventory
   from           : /app/Middleware/Oracle_IDM1/oraInst.loc
OPatch version    : 11.1.0.11.0
OUI version       : 11.1.0.9.0
Log file location : /app/Middleware/Oracle_IDM1/cfgtoollogs/opatch/opatch2017-02-10_09-32-39AM_1.log


OPatch detects the Middleware Home as "/app/Middleware"

Lsinventory Output file location : /app/Middleware/Oracle_IDM1/cfgtoollogs/opatch/lsinv/lsinventory2017-02-10_09-32-39AM.txt

--------------------------------------------------------------------------------
Installed Top-level Products (1):

Oracle IDM Suite                                                     11.1.2.3.0
There are 1 products installed in this Oracle Home.


There are no Interim patches installed in this Oracle Home.


--------------------------------------------------------------------------------

OPatch succeeded.

Thursday, February 9, 2017

Error: namespace prefix "oraext" can not be resolved

Add the following line in your BPEL process at the location <process name = "ApprovalProcess"...>

xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"

Wednesday, February 8, 2017

Create new composite in OIM

  1. Set JAVA_HOME to /app/jdk1.6.0_41
  2. export JAVA_HOME=/app/jdk1.6.0_41/
  3. Set the ANT_HOME environment variable to <MW_HOME>/modules/org.apache.ant_1.7.1
  4. export ANT_HOME=/app/Middleware/modules/org.apache.ant_1.7.1
  5. Set the PATH environment variable to $JAVA_HOME/bin:$ANT_HOME/bin:$PATH
  6. export PATH=$JAVA_HOME/bin:$ANT_HOME/bin:$PATH
  7. Navigate to <OIM_HOME>/server/workflows/new_workflow
  8. Execute the command ant-f new_project.xml
  9. Provide the Application Name
  10. Provide the Project Name
  11. Provide the Service Name
  12. The workspace will be generated in <OIM_HOME>/server/workflows/new-workflows/process_template
  13. Copy the created directory to a location accessible to JDeveloper

Enable Approval workflow in OIM PS3


1. Stop the Admin Server.
2. Set the values of following system properties:

  • Workflows Enabled : true (true by default)
  • Workflow Policies Enabled : true
3. Restart the admin and OIM server.