Can't find resource for bundle java.util.PropertyResourceBundle

Problem: Something went wrong while creating User UDF which results in below error on OIM UI page.

Effect of error on OIM UI :

  1. Cannot create the user from UI.
  2. Cannot search all users or specific users.
  3. The sysadmin console doesn't respond and is blank.
Solution
  1. Export User.xml.
  2. Now open the User.xml file using any text editor and remove the UDF which you have created.
  3. Again import the modified file import export functionality.
[Note: For Export and Import use Export-Import functionality.]


java.Lang.NoClassDefFoundError(oracel/jrf/PortabilityLayerException)

Problem: Error while opening design console. Getting "java.Lang.NoClassDefFoundError".

Solution:

  1. Copy "jrf-api.jar" file from below OIM Server location to "designconsole/ext" directory.                                                                   $MW_HOME/oracle_common/modules/oracle.jrf_11.1.1/jrf-api.jar                                            
  2. Open "classpath.bat" file using any editor and add ";.\ext\jrf-api.jar" in classpath.

Change UDF size OIM 11g R2 PS3


  • Login to sysadmin console. Click on the Sandbox link present at top right corner.

  • It will display below page. Click on the Create Sandbox button.


  • It will ask for the name and description for the sandbox. Enter the appropriate name and description.

  • Click on Save and close button, it will activate the sandbox.

  • Now click on User link from the left panel.

  • It will open all user UDF’s, search for the desired field which is SSN No here.

  • You can see maximum length is set 8 characters.  

  • Change the length to desired values as per your requirement. And click on the Save and Close button.

  • Close the Manage User tab. And again go to Sandbox tab by clicking earlier top sandbox link.

  • Now click on export to take backup of the selected sandbox for future references.
  • Publish the sandbox by clicking Publish Sandbox button. 

OIM schema user password expire

  • Problem: - OIM schema user password expires.
  • Solution:-
    • Check the status of accounts expiration of all schema users by executing following command

select USERNAME, EXPIRY_DATELOCK_DATE, ACCOUNT_STATUS from dba_users where    USERNAME like '%<SCHEMA_PREFIX>%';

    • It will display the account summary information for all schema users.

    • Now change the password those users whose passwords have been expired by executing following command.

         alter user USERNAME identified by <Password>;