Solution: Give any value in the Group textbox like 'oim' and save. This value is not used anywhere.
Monday, February 20, 2017
Friday, February 10, 2017
OIM server version and patches
- export ORACLE_HOME=/app/Middleware/Oracle_IDM1
- cd $ORACLE_HOME/OPatch/
- ./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
Wednesday, February 8, 2017
Create new composite in OIM
- Set JAVA_HOME to /app/jdk1.6.0_41
- export JAVA_HOME=/app/jdk1.6.0_41/
- Set the ANT_HOME environment variable to <MW_HOME>/modules/org.apache.ant_1.7.1
- export ANT_HOME=/app/Middleware/modules/org.apache.ant_1.7.1
- Set the PATH environment variable to $JAVA_HOME/bin:$ANT_HOME/bin:$PATH
- export PATH=$JAVA_HOME/bin:$ANT_HOME/bin:$PATH
- Navigate to <OIM_HOME>/server/workflows/new_workflow
- Execute the command ant-f new_project.xml
- Provide the Application Name
- Provide the Project Name
- Provide the Service Name
- The workspace will be generated in <OIM_HOME>/server/workflows/new-workflows/process_template
- Copy the created directory to a location accessible to JDeveloper
Enable Approval workflow in OIM PS3
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.
Tuesday, February 7, 2017
Subscribe to:
Comments (Atom)
-
import java.util.Date; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.Stateme...
-
Query the 'spt_work_item' table. Pay attention to 'id' column(used for deleting the workitem) and 'owner' column (us...
-
import java.util.List; import...