Notification from OIM(11gR2) after email id update

Hi ,
     I have requirement to implement an use-case in OIM as follows.
OIM has one target resource integrated - Say Resource1 . When ever email id is updated in OIM it will get propagated to Resourc1 and and if email is updated at Resource1 it will get reconciled to OIM. And we have a another system which was not integrated with OIM say Resource2 . Our requirement is to send an email notification to Resource2 admin(s) when ever users email update event occurs in OIM . What was the best way to implement this usecase. As far as I understood this could be implemented using event handlers. I there any other approach/design to address this usecase.
I mean by using design console approach.
-Satyendra

The "Send Notification to Resource Admin task" should get called on the success of "Reconciliation Update Received" task.
Inside process task adapter (Send Notification to Resource Admin task), you can read the value of old email/new email (using old checkbox, just give a try) or u can compare the User profile Email & Process Form Email Id ( inside your code) and trigger the update on User profile.
The below post also had similar kind of requirement:
Re: How to update OIM user profile fields after AD user target reconciliation
Or to avoid any confusion, just use the cleaner approach of Event Handler to trigger notification.
~J

Similar Messages

  • Why do my texts come from my icloud after the ios7 update?

    why do my texts come from icloud.com after the ios7 update?

    Basically, your iMessage settings have become slightly off due to the update.
    Go into Settings -> Messages -> Send/Receive.
    You should see your phone number and your email address. Given your description, I would imagine that only your Email Address is checked. If you CAN (it's probably greyed out), check your phone number off, and it should work.
    Now, operating under the assumption that you can't just turn the phone number back on:
    1.) Go into Settings -> Messages, and turn iMessage off.
    2.) Go into Settings -> iTunes and Appstore, and tap on your Apple ID at the top, and tap 'Sign Out'
    3.) Power your phone off completely (Press and hold the sleep/wake key, then swipe to power off).
    4.) Power your phone back on.
    5.) Go back to Settings -> iTunes and Appstore, and sign back into your Apple ID.
    6.) Go back to Settings -> Messages, and turn iMessage back to ON. Wait for iMessage service to activate.
    7.) Go into Send/Receive again, and verify that your phone number is now checked off.
    8.) Send a text message to a friend with an iPhone to verify that the issue is resolved.
    NOTE: If you do not know your Apple ID/Password, reset it at http://iforgot.apple.com.

  • I cannot restore aback up from my computer after a softwared update. i kep getting an error message saying the phoneis disconnected even though it it not.

    cannot restore aback up from my computer after a softwared update. i kep getting an error message saying the phoneis disconnected even though it it not.

    If you're not a developer then you really should not have upgraded.
    I'm unsure how you can fix this as you have already done a back-up on iOS 7 and apple don't support firmware downgrades.

  • Email Notification from OIM 11g

    Hi ,
    Can anyone please explain in detail steps , how to configure /send notification from SOA . As i need to send notification to end user/manager etc..when an approval workflow is finished .
    Regards
    Sid

    Assuming that you already have an SMTP Server stood up, it's fairly easy. I would visit this site: http://www.orafmwschool.com/gmail-notification-service/
    From there, you can skip the whole configuration of the certificates since the example configures Gmail which is over SSL. Since you are only sending email out, just fill out the outbound information.
    Sunny Tsang

  • Problem getting correct data from MS Access after doing an Update

    Hi all,
    I have a problem getting correct data after doing an update. This is the scenario
    I am selecting some(Eg: All records where Column X = �7� ) records and update a column with a particular value (SET Column X = �c� ) in all these records by going through a while loop. In the while loop I add these records to a vector too, and pass it as the return value.
    After getting this return value I go through a for loop and get each record one by one from the DB and check if my previous update has actually happened. Since No errors were caught while updating DB, I assume all records are updated properly but my record set shows one after another as if it has not been updated. But if I open the DB it is actually updated.
    This does not happen to all records, always it shows like this
    1st record     Mode = �c�
    2nd record     Mode = �7�
    3st record     Mode = �c�
    4nd record     Mode = �7�
    9th record     Mode = �c�
    10th record     Mode = �7�
    I am relatively new to java and this is someone elses code that I have to modify,So I am not sure if there some thing wrong in the code too
    //Here is the method that gets records and call to update and add to vector
    public static Vector getCanceledWorkOrders() throws CSDDBException{
    //Variable declaration
      try {
        objDBConn = DBHandler.getCSDBCon();
        strSQL  = "SELECT bal bla WHERE [Detailed Mode])=?)";
        objStmt = objDBConn.prepareStatement(strSQL);   
        objStmt.setString(1, '7');
        objWOPRs = objStmt.executeQuery();
        while (objWOPRs.next()) {
         //Add elements to a vector by getting from result set
          //updating each record as PROCESSING_CANCELLED_WO(c)
          iRetVal = WorkOrderDetailingPolicy.updateRecordStatus(objPWODP.iWorkOrderNumber, objPWODP.strPersonInformed, EMSConstants.PROCESSING_CANCELLED_WO);
          if (iRetVal == -1) {
            throw new NewException("Updating failed");
      catch (Exception e) {
        vecWONumbers = null;
        throw new CSDDBException(e.getMessage());
      }finally{
        try {
          objWOPRs.close();
          objStmt.close();
          DBHandler.releaseCSDBCon(objDBConn);
        catch (Exception ex) {}
      //return vector
    //here is the code that actually updates the records
    public static int updateRecordStatus(int iWONumber, String strPerInformed , String strStatus) throws CSDDBException{
       PreparedStatement objStmt = null;
       Connection objDBConn  = null;
       String strSQL = null;
       int iRetVal = -1;
       try{
         objDBConn  = DBHandler.getCSDBCon();
         objDBConn.setAutoCommit(false);
         strSQL = "UPDATE Table SET [Detailed Mode] = ? WHERE bla bla";
         objStmt = objDBConn.prepareStatement(strSQL);
         objStmt.setString(1, strStatus);    
         objStmt.execute();
         objDBConn.commit();
         iRetVal = 1;
       }catch(Exception e){
         iRetVal = -1;
       }finally{
         try{
           objStmt.close();
           DBHandler.releaseCSDBCon(objDBConn);
         }catch(Exception ex){}
       return iRetVal;
    //Here is the code that call the records again
      public static WorkOrderDetailingPolicy getWorkOrders(int iWorkOrderNo) throws CSDDBException{
        Connection objDBConn = null;
        PreparedStatement objStmt = null;
        ResultSet objWOPRs = null;
        WorkOrderDetailingPolicy objPWODP = null;
        String strSQL = null;
        try {
          objDBConn = DBHandler.getCSDBCon();    
          strSQL = "SELECT * FROM [Work Order Detailing] WHERE [Work Order No] = ?";
          objStmt = objDBConn.prepareStatement(strSQL);
          objStmt.setInt(1, iWorkOrderNo);
           objWOPRs = objStmt.executeQuery();
          if (objWOPRs.next()) {
            objPWODP = new WorkOrderDetailingPolicy();
            objPWODP.iWorkOrderNumber = objWOPRs.getInt("Work Order No");
            //......Get Record values
        catch (Exception e) {
          objPWODP = null;
          throw new CSDDBException(e.getMessage());
        }finally{
          try {
            objWOPRs.close();
            objStmt.close();
            DBHandler.releaseCSDBCon(objDBConn);
          catch (Exception ex) {}
        return objPWODP;
      }

    Hello,
    Can you put an example of your problem online?
    Are you sure you're not having problems with case sensitive data?
    Thanks,
    Dimitri

  • Can someone verify video output from dock connector after 4.x update?

    Someone told me that they can no longer play videos on your TV (with a video cable) after iOS4.x updates. I recently paid $50+ for an Apple video cable to all me to play videos from my iPhone on my TV. I am still on 3.1.2. I want to make sure the upgrade doesn't break that.
    Thanks.

    Can someone with a 3G iPhone, running iOS4.1 verify this for me, please?
    Thanks

  • Officejet 8600 won't pull from Tray 2 after Mac OS update

    I recently installed the Mac OSX 10.10 Yosemite update.  Immediately after, my HP Officejet 8600 all-in-one would not pull from the optional second tray.  There is a 10/22/14 driver update that says it is for OSSX 10.10, but does not fix the problem.  After trying every single solution I could think of, including deleting all printers from my system, repairing permissions, installing the new driver, uninstalling and re-installing the second tray, among other things, nothing worked.
    The problem appears to be that every time I print, it unselects the "Optional Paper Tray Input" setting from the OS settings.  One work around is to go in and make sure that box is checked each time I print, which is a pain and only works about 80% of the time.
    The printer is an office printer and Tray 1 is envelopes.  While I could put regular paper in Tray 1, that would be unfair to the other people in the office who use the printer and would need to manually do an envelope each time.
    I called HP support and they basically told me that it was a bug that was not currently fixed.  They said they would e-mail me when a new updated driver is released (I'll be holding my breath for that).  I'm posting this here hoping that admins notice it and get moving on that update so that I can get my printer back.

    I have the same problem as everyone else in this thread.  I've been on another thread, here:  http://h30434.www3.hp.com/t5/Printing-Issues-Troubleshooting/HP-8600-won-t-print-from-tray-2-in-upda... .  
    I have spent hours of time on the phone and in chat sessions with HP, then Apple, and then HP again.  The HP reps made it clear that the problem is in the HP update that was issued to work with OS 10.10, and that a fix would be coming soon.  That was over a month ago, and still nothing.
    Since HP reps seem to monitor this thread, could someone from HP inform us as to when there will be a solution?  The last HP software update for this printer was October 22nd, so you've had plenty of time to fix this problem, which HP has repeatedly promised to do, but failed to do.

  • Bold 9700 not starting up after email setup update 6.11. Need help with a mac!!!

    I installed the official os 6 on my blackberry released by O2 over a month back. Yesterday, I was not able to configure any emails without downloaed the new version of the email setup 6.11. After the install, I was needed to reboot the phone. However, since then the phone is not switching on. That initial page comes with the Blackberry logo and that status bar (which shows completed) but never leaves that page!!
    Someone please please help!!!!

    I got mine to work by reinstalling OS 6 via the Blackberry Desktop software, but because I restored my backup as well as my old settings for email, my emails are still coming through provided I don't change my passwords as I can't get into settings without being asked to update as well. It means I won't be able to get my exchange emails as we always have to change/verify passwords periodically. The weirdest thing is that I no longer have maps and password keeper....

  • Cannot Boot From Internal Disk After Failed Firmware Update

    Xserve 1,1 (Late 2006)
    After a failed firmware update the server will not boot from an internal volume.
    I have tried the firmware restoration CD 1.4 without success due to the following:
    I press the sleep LED but only get the initial three fast blinks, not the next slower three blinks, and the last three fast blinks.
    I can boot in Target Mode, NetBoot, from an installation CD. The volume with the OS (10.5) is recognized by another machine, but the server will not boot from it.
    I have tried reinstalling the OS on another drive, and repairing the drive.
    I would appreciate any suggestions.

    I read somewhere that it might have to do with the fact that it says "S.M.A.R.T. not supported" on DU. Is there any way to fix this? does it mean I'll need a new drive soon?
    I think something else is afoot. I believe that, when you boot from the the system/install and run DU from there, DU does not recognize SMART reporting.
    Before I recently updated my MBP to 10.5.7, I ran DU from the DVD to verify the disk before applying the update (I'm cautious about those updates). It gave the same report you are seeing. Once I was booted from the hard drive, the SMART status report returned to normal. SMART will typically report "failing, not "not supported" if the drive is going bad.

  • I cant restore from time machine after mountain lion update

    i recentlz went to Apple Geius to get my HD formatted as i had a corrupt disk. Once cleaned and my hardware all verified as OK, i got the apple store to load Mountain Lion, previously running Snow Leopard. I came home conneted to my time machine and it restored evrything that from this mornings back up no issues.
    When i try to access time machine to look at previous days back ups i get error code 6584
    also time machine shows no dated back ups beyond today.
    Any ideas?
    thxs
    Simon

    First, I strongly suggest that you make another full backup to a locally-attached external hard drive. You should do that anyway. One backup isn't enough to be safe, and backing up over a network is less reliable than backing up locally. Then try each of the following steps that you haven't already taken.
    1. Restart the backup device. You can do that by disconnecting and reconnecting the power cord.
    2. Hold down the option key and select Verify Backups from the TM menu in the menu bar (not the Dock icon.) This operation may take a long time. If the menu-bar icon (a clock that runs backwards) isn't showing, check Show Time Machine in menu bar in the preferences.
    3. Erase the backup device. With a Time Capsule, you do that from within the AirPort Utility application; see its built-in help for details. All backups will be lost, so don't do this until you've backed up to another device. After erasing, select the TC again as a backup destination in the TM preference pane. The first backup should be made over a wired connection, if possible.

  • Can't download photos from digital camera after latest software update

    Hi,
    since the latest update on the 28.9.08 I have trouble downloading photos from my Canon Eos 400D. I can't use "Digitale Bilder" anymore, nor Adobe Bridge Photo Downloader or iPhoto. I have to use my partners MacBook that doesn't have the update yet. Could it have something to do with the RAW-Compatibility-Update? And does Apple know and do something about it?
    Or can I fix this myself?
    I'd appreciate help.
    smartgrey

    Same here... I have a Powershot Elph340HS and a SD960IS, I've updated Canon ImageBrowser and CamaraWindow and it just says "no camera detected"... so I used a different usb to make sure it wasn't that, I've tried everything, Preview, iPhoto, even iMovie... all of which worked before for importing from my cameras...
    OS X Yosemite (10.10) I'm on a Macbook Pro
    please fix this Apple!!!!

  • Apps missing from Library sidebar after 10.1 update

    Installed 10.1 yesterday and ever since the apps selection from the library is missing.
    I experienced problems installing 10.1 yesterday, would not run via the update selection from within iTunes.
    Instead, I manually downloaded and ran each component separately.
    That was when I first noticed the problem.
    I have completely uninstalled iTunes and all related programs.
    Re-installed iTunes 10.1, no change.
    I have reverted to a previous library file, no change.
    All the apps still exist in the iTunes/MobileApplication folder.
    Any ideas?

    Sorted. In Edit/Preferences, General tab, Sources, the "Apps" checkbox was unselected. Lots of options there now - is this new?
    Not sure why it got unselected...

  • I can longer upload my photos from my camera, after 10.6 update. Unreadable

    I used to connect my camera, and iPhoto would open, show the photos in boxes, I would hit Import All, and BAM! It was done! Now, when I connect my camera and iPhoto opens up, the boxes show up with no pictures inside, and if I hit Import All, it goes really fast, but doesn't really import anything. Says, Unreadable Files. But the files are .JPGs. I don't understand! What do I need to do?

    Terence Devlin wrote:
    What problem are you trying to fix? I thought you were trying to get photos from your camera to iPhoto.
    Yes that is a toughie. Plug it in to the Mac. Put your camera's card in it.
    Crap.
    You're welcome.
    Regards
    TD
    I have never seen a USB Card Reader. That's why I asked. Remember, despite being consumers with the same computer, we're not all blessed with all the ways of the computer world. Second, the "crap" response was to the fact that I don't want to have to use a stupid card reader to pull my photos from my camera to iPhoto. Never had to do it before, don't want to have to do it that way from here out. My thought was that a Mac just "works." So, when I plug in the USB for my printer, it just works. And when I mount my camera, the pics show up, ask me to import it the way it always has, and imports. Easy. I didn't imagine upgrading to Snow Leopard would cause things like this that no one can help me fix, other than giving me band-aids like puling the pics off with an auxilary device.
    It wasn't meant to be smarmy or arrogant, it is a frustrated comment. Another problem happened yesterday by which iPhoto wouldn't even open. Said the disk was locked, and I didn't have access to the library. Wow. And yes, I repaired and verified permissions after I upgraded. I rebooted the computer, came up like a charm.

  • Movie gone from rental list after 4.4 update

    I just updated my Apple TV to 4.4 and now The Adjustment Bureau is gone from my list of rentals. It doesn't even show up when I search in iTunes. I know I had at least another 20 days to watch it.
    What happened? Is it really gone from the iTunes/Apple list?

    The update caused your Apple TV to reset (hopefully it's a one off). Redownload the movie, I'm not sure whether you will need to pay for it again (even if it says so at that point). Keep watching Your Purchase History and if you do get charged, select the content which is causing a problem and use the 'Report a problem' button.

  • OTP notification from a different source email address?

    Hi,
    When the OTP email is sent, it is sent from the FIMService account.
    Is there a way to change this, so that these OTP messages appear to originate from something like the 'Help Desk' email address? Or perhaps change the 'Reply To' field?
    Thank you.

    Changing e-mail template will change e-mail body. From address is based on FIM Service configuration as FIM is sending its e-mail with e-mail address provided in service configuration. 
    Tomek Onyszko, memberOf Predica FIM Team (http://www.predica.pl), IdAM knowledge provider @ http://blog.predica.pl

Maybe you are looking for