Skip to main content
Revert Sandbox

 

Here are steps to revert sandbox ,

1. Login to Enterprise Manager(EM Console).



2. Expand the Application Deplopments >> Resource Adapters >> oracle.iam.ui.console.self-service and click oracle.iam.ui.console.self-service(V2.0)(oim_server1).



3. Click Application Development from the top and select MDS Configurations.



4. Select Runtime MBean Browser from the bottom of the screen.



5. Click on the Operations tab and select listMetadataLabels operation



6. Click Invoke to display a list of all published sandboxes



7. Select a Creation label and copy the complete name of the element and click Return



8. Select the promoteMetadataLabel operation.



9. Enter the label name you copied in step 7 and click Invoke. The invoke button will revert the sandbox changes that you have selected and all changes done after that to your desired state.



Note: You don't need to repeat the same set of steps for the another node.





9. Restart all the nodes of the OIM Server

Comments

Popular posts from this blog

OIM Common Tables and queries OIM 11gR2 PS2/PS3 tables and queries, OIM useful Queries, OIM sql queries, OIM Database queries, OIM tables, OIM queries svr — IT Resource information. (svr_key is primary key) spd — IT resource parameter Definition information svd  – IT Resource Type Definition. app_instance  — Application Instance Information (app_instance_key is the primary key) It will have itresoucre_key to link with svr_key in svr table and object_key to link with obj_key in obj table. obj — Resource Object information (obj_key) obi  — Object Instance information  (obi_key) catalog  — Request Catalog Information (applications instances, roles, entitlements) (Catalog_id) orc  — It stores any users account instance information (orc_key) ost  — It stores the object status information (ost_key) Note : never link ost and obj table directly, we have to link ost and oiu table with ost_key and then obi and oiu with obi_key and then ...

Steps Developing Schedule Task with OIM 11g R2

Steps Developing Schedule Task with OIM 11g R2 1.      Create a java class by implementing oracle.iam.scheduler.vo.TaskSupport interface. Include the following JAR files in the class path to compile a custom class: From  OIM_INSTALL_HOME/ server/platform iam-platform-kernel.jar iam-platform-utils.jar iam-platform-context.jar iam-plaftorm-authz-service.jar From  OIM_INSTALL_HOME / designconsole/lib oimclient.jar xlAPI.jar All other JAR files like xlVO.jar and xlScheduler.jar Create a library of JAR files containing the custom classes. Sample java code package com.scheduletask; import java.util.HashMap; import oracle.iam.identity.usermgmt.api.UserManager; import oracle.iam.identity.usermgmt.vo.User; import oracle.iam.platform.Platform; import oracle.iam.scheduler.vo.TaskSupport; public class CreateNewUser extends TaskSupport{    @Override ...

Upload Jar and Register Plugin in OIM 11g R2

modify ant.properties file for below setting /Middleware/Oracle_IDM1/server/plugin_utility wls.home=/l01/apps/oracle/fmw/Middleware/wlserver_10.3 oim.home=/l01/apps/oracle/fmw/Middleware/Oracle_IDM1 /server login.config=${oim.home}/config These environment variables must be set export MW_HOME=/l01/apps/oracle/fmw/Middleware export DOMAIN_HOME=/l01/apps/oracle/fmw/Middleware/user_projects/domains/iam_domain export APP_SERVER=weblogic export OIM_ORACLE_HOME=$MW_HOME/Oracle_IDM1 export ORACLE_HOME=$MW_HOME/Oracle_IDM1 export WL_HOME=$MW_HOME/wlserver_10.3 export ANT_HOME=$MW_HOME/modules/org.apache.ant_1.7.1 export JAVA_HOME=/l01/apps/oracle/java/jdk1.7.0_79 export PATH=$ANT_HOME/bin:$JAVA_HOME/bin:$ORACLE_HOME/OPatch:$PATH Upload Jar Steps /l01/apps/oracle/fmw/Middleware/Oracle_IDM1/server/bin # ./UploadJars.sh Enter the oim user id:xelsysadm Enter Password Enter t3 url : t3://Host:oimport Ent...