OIM reconciliation fails when more then one record in trusted source table

I've create a reconciliation connector against an oracle table with 2 colums:
user_id
email
When I run the connector with only one record exists in the table everything works fine and the user is propogated to the OIM user store. If I add a second record and run the reconciliation again I get:
ERROR,18 Jun 2010 10:15:58,715,[XELLERATE.JMS],The Reconciliation Event with key -1 does not exist
ERROR,18 Jun 2010 10:15:58,716,[XELLERATE.JMS],Processing Reconciliation Message with ID -1 failed.
I'm fairly certain this is something simple.
Does anyone have any thoughts?

How about performing the update IN the database using a stored
procedure?
By using non-database fields on your form to get the
information, you can then call the procedure in the database to
perform the updates. If an error occurs in the procedure you
rollback, if necessary, and send a message or status back to the
form. If it succeeds you might wish to commit and then re-
execute the form's query -- using either the original key values
or the new key values...
null

Similar Messages

  • Insert more then one record on a Form in a Data Block

    Hi,
    How can I Insert more then one record in the DataBlock of a Form in a WHEN_BUTTON_PRESSED trigger. In the Trigger I have given "commit" but it just saves the record once regardlessly how many times you press the button.
    Thanks in advance
    Khawar

    Hi,
    You said
    "**In the Trigger I have given (commit) but it just saves the record once regardlessly how many times you press the button.**"
    I think u want to batch mode insertion if m not wrong?
    1- Use Insert statment instead of commit and then next record.
    Begin
    Insert into <table> values (:Blk.Val1,:Blk.Val2,:Blk.Val3,:Blk.Val4);
    Create_record;
    End;
    2-Use another object say button for commit record.
    Acknowledege me
    Best regards
    Khurram Siddiqui

  • Update more then one records in join

    How to update more then one records in join query.
    means each reocrds have different value.
    Thanks

    Can you give an example to illustrate your question?

  • How to retrieve more then one record from database

    I am doing a SELECT FROM WHERE SQL statement on a database which returns more then one record. I want to retrieve certain column values from the selected records. How do I do that? If only one record is returned, I know I can do a data operation with operation set to 'Get-Retrieve Values from Record' and Record to operate on set to 'Current-Use current record'. I need to find out how to configure to data operation window in the case more then one record is returned by the preceding SQL statement. Depending on the number of records returned, I can dynamically create array variables to store the 'to be retrieved' column values, just dont know how to retrieve them.
    Any help will be greatly appreciated.
    Thanks
    Anuj

    I apologize for not being clear in explaining my problem, perhaps I should have posted an example. Anyways, I was able to figure out the solution. I was doing an 'Open SQL' statement which was selecting multiple records (rows) from a table in the dB. I was storing the number of records returned in a local variable. Then, I wanted to retrieve certain columns of all the selected rows (records). In the "Data operation", I was choosing the 'Record to operate on' as 'Current-Use Current Record'. Changing this field to 'Next-Fetch next record' fixed the problem. I then retrieved the values of those columns into a dynamically created array variable whose dimensions came from the local variable which stored the number of records returned in the SELECT SQL statement. 
    Thanks
    Anuj

  • Is it possible to retrieve report for more then one record at Bi Pub

    is it possible to retrieve report for more then one record at a time using BI Publisher on siebel Application

    Hi Sudhir,
    We have tried this.
    I think currently you can query for records you want on UI and run report , then you can see the result set of query in report.
    But i think in future releases of BIP the feature to run a report for selected & Multiple Selected records will be provided.
    Thanks,
    Vamsi

  • How to control when more then one ratiobutton active?

    I used pnp LDB, in these i am created 6 radiobuttons.
    Radiodutton 1 use : List Display
    Radiodutton 2 use : Grid Display
    Radiodutton 3 use : Paper Display
    Radiodutton 4 use : Download
    Radiodutton 5 use : Send Email
    Radiodutton 6 use :  Application Server
    Here List & Grid display are working and remaining any one Radiobutton select and execute. It is show error i.e 'More then one radio button is active'.
    How i can control it. Plese give me Idea about that.

    Hi Thrimu,
    Try to clear radio butttons in INITIALIZAATION event. So that, only one radio button will be active.
    also, try to use AT-SELECTION SCREEN OUTPUT event.

  • How can I restrict more then one user to access the table?

    Hi !
    I have a problem and two solutions and I am a bit confused as to
    which one is the best one and/or can there be any better way of
    handling the problem ?
    Problem : I have to update a key field of a table when I update
    it in the form 5.0 screen. I am basically doing a maintenance of
    a table and if a certain field is updated then the change has to
    be reflected in two more tables. But the issue is that the field
    is a part of the key in those two tables. So all I can think of
    is that I need to insert new set or rows for that new value of
    the field and delete the old set of records for old values of
    the field.
    There are two ways of doing it;
    1.One option can be to explicitely define two cursors separately
    and fetch the values in them one by one and then insert the new
    records and then delete the old records in both the tables. This
    I feel will be a cumbersome process both in terms of processing
    time and the coding.
    2.Second option I was thinking can be to create two flat tables
    (without keys) and insert the values in them and update the
    changed field there and then insert the rows in the respective
    tables. Delete the old records in the main tables and delets the
    records in these flat tables. This is a bit more faster and
    easier to predict and code. This seems to be a better option for
    me.
    Any comments on these ?
    In both the cases I was thinking of making some provision so
    that more then one person can't update the table simultaneously.
    Since if there are more then one persons doing the processing
    then some inconsistency might creep into the whole process.
    This is easier to do in the second process as if I check the
    data in the flat tables and if there is some data then I can
    presume that some one is doing the processing and I can ask the
    other person to hold for a while. But in this case how can I
    stop more then two people to simultaneously check for the empty
    table and start inserting the record ?
    I was just thinking of having a sepatare table having only one
    field and this will be a key field and as the process begins the
    process will insert a fix value say 'Y' in the key field and at
    the end of the process the record will be deleted and this way
    we can restrict the user to access the process more then one at
    a time..? Since you can't have same value of the key in a table
    more then once.
    Any better way of handling it will be deeply appreciated.
    How about locking the table at the begining and releasing the
    lock at the end ? Will there be any issue in that? since I am
    inserting and deleting the rows in the same transaction.
    Comments welcome,
    Shobhit
    null

    How about performing the update IN the database using a stored
    procedure?
    By using non-database fields on your form to get the
    information, you can then call the procedure in the database to
    perform the updates. If an error occurs in the procedure you
    rollback, if necessary, and send a message or status back to the
    form. If it succeeds you might wish to commit and then re-
    execute the form's query -- using either the original key values
    or the new key values...
    null

  • VBA fails when more than one document is open

    I developed a complex program for manipulating a multitab workbook and distributing it within the company. I did all the development work with only the one workbook open. When users open the workbook and have other workbooks open, the focus appears to change
    among the workbooks. As a result, some of the macros try to run against the other workbooks and not the intended workbook.
    Most of the programming uses ActiveWorkbook or ActiveSheet. How do I ensure the macros run against the desired workbook?

    Re:  regain control over when code runs
    Some Options...
    1.  Put a button on the sheet and let the user decide when to run the code
    2.  Change ActiveWorkbook to ThisWorkbook
    3.  Change ActiveSheet to ThisWorkbook.ActiveSheet
    4.  Use the actual workbook and sheet names... Workbooks("Sludge").Worksheets("Mud")
    Also suggest you find somebody in the  company to try your code before doing a wide distribution.
    Jim Cone
    Portland, Oregon USA
    free & commercial excel programs (n/a xl2013)
    https://jumpshare.com/b/O5FC6LaBQ6U3UPXjOmX2

  • How to apply data into 2 tables AND to more than one record in same table?

    Hello,
    I am trying to apply/insert data into 2 tables AND at the same time apply data to more than one record (in the same table). How would I do this in APEX?
    I have updated using one table with no problem, however, when I try updating with the two tables/ multiple record sets, I get errors.
    I appreciate the help.
    Thanks.
    Linda

    You can achieve what you want using PL/SQL. Can you post ur code?

  • Crashing - Freeze when trying to export more then one project in compressor

    when i set more then one final cut project to convert a DVCPRo HD project to DVD media or quicktime during the first batch project the system freezes. I used to be able to do multiple
    projects over night or the weekend and now i have to do one at a time.
    THOUGHTS???
    here is the error message received:
    panic(cpu 0 caller 0x0019A566): interlock timeout for mutex 0x806e808
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x4885bdb8 : 0x128d08 (0x3cb134 0x4885bddc 0x131de5 0x0)
    0x4885bdf8 : 0x19a566 (0x3d0020 0x806e808 0x257eef8 0x1d18a0)
    0x4885be28 : 0x197e97 (0x806e808 0x206 0x4885be58 0x32fd40)
    0x4885be38 : 0x32fd40 (0x806e808 0x1 0x7a2220c 0x7464ce4)
    0x4885be58 : 0x3319fa (0x7fca320 0x10 0x0 0x32cfd8)
    0x4885bea8 : 0x33bbb3 (0x85c5bb8 0x2 0x714c290 0x85c5d70)
    0x4885bef8 : 0x33be49 (0x85c5bb8 0x1 0x4885bf28 0x32d034)
    0x4885bf28 : 0x33bfd1 (0x85c5bb8 0x1 0x85c5bb8 0x1)
    0x4885bf58 : 0x379e23 (0x85c5bb8 0x7fc5e70 0x7fc5eb4 0x0)
    0x4885bfc8 : 0x19b17e (0x7d0e200 0x0 0x19e0b5 0x7d10b20) No mapping exists for frame pointer
    Backtrace terminated-invalid frame pointer 0xb0638d68
    Kernel version:
    Darwin Kernel Version 8.9.1: Thu Feb 22 20:55:00 PST 2007; root:xnu-792.18.15~1/RELEASE_I386
    Model: MacPro1,1, BootROM MP11.005C.B04, 4 processors, Dual-Core Intel Xeon, 3 GHz, 4 GB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Memory Module: DIMM Riser A/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    Serial ATA Device: Hitachi HDS725050KLA360, 465.76 GB
    Parallel ATA Device: SONY DVD RW DW-D150A
    Fibre Channel Device: SCSI Target Device @ 0
    Fibre Channel Device: SCSI Target Device @ 0
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft Basic Optical Mouse v2.0, Microsoft, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: built-in_hub, unknown_value, Unknown

    no. I just tried compressing 2 HD projects to dvd last night and half way through the first it appears the system crashed.
    the crash report is as follows -
    I did the update - same issue PLEASE ANYONE HELP????????
    THANKS
    panic(cpu 3 caller 0x0019A566): interlock timeout for mutex 0x70dff78
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x487abce8 : 0x128d08 (0x3cb134 0x487abd0c 0x131de5 0x0)
    0x487abd28 : 0x19a566 (0x3d0020 0x70dff78 0x16 0x70defa4)
    0x487abd58 : 0x197e97 (0x70dff78 0x206 0x487abdf8 0x331d2f)
    0x487abd68 : 0x331d2f (0x70dff78 0x7ba1dac 0x12f572 0x0)
    0x487abdf8 : 0x331fad (0x7bd5920 0x70dff44 0x7ba1dac 0x320995)
    0x487abe38 : 0x339531 (0x7ba1dac 0x8 0x0 0x58b4a000)
    0x487abec8 : 0x13b4f4 (0x7ba1dac 0x1 0x487abef8 0x199ef1)
    0x487abef8 : 0x13cd1a (0xc26b360 0x0 0x487abf28 0x1a3010)
    0x487abf38 : 0x13cb77 (0xc26b380 0xc26b0d8 0xc3f269c 0xc3f2658)
    0x487abf78 : 0x127406 (0x1 0x0 0x1 0x14)
    0x487abfa8 : 0x1a2f8d (0xffffffff 0x1 0x0 0xc3eebc0)
    0x487abfc8 : 0x19ad06 (0x0 0x1 0x19e0b5 0xc3eebc0) Backtrace terminated-invalid frame pointer 0x487abf58
    Kernel version:
    Darwin Kernel Version 8.9.1: Thu Feb 22 20:55:00 PST 2007; root:xnu-792.18.15~1/RELEASE_I386
    Model: MacPro1,1, BootROM MP11.005C.B04, 4 processors, Dual-Core Intel Xeon, 3 GHz, 4 GB
    Graphics: ATI Radeon X1900 XT, ATY,RadeonX1900, PCIe, 512 MB
    Memory Module: DIMM Riser A/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser A/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 1, 1 GB, DDR2 FB-DIMM, 667 MHz
    Memory Module: DIMM Riser B/DIMM 2, 1 GB, DDR2 FB-DIMM, 667 MHz
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: ATY,RadeonX1900, Display, Slot-1
    Serial ATA Device: Hitachi HDS725050KLA360, 465.76 GB
    Parallel ATA Device: SONY DVD RW DW-D150A
    Fibre Channel Device: SCSI Target Device @ 0
    Fibre Channel Device: SCSI Target Device @ 0
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft Basic Optical Mouse v2.0, Microsoft, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: built-in_hub, unknown_value, Unknown
    FireWire Device: unknown_device, unknown_value, Unknown

  • I have a mac book pro and when I turned on iChat it would not let me video chat with more then one person even though I was able to in the past. It only showed an icon to video chat with one person. Please help!!

    I have a mac book pro and when I turned on iChat it would not let me video chat with more then one person even though I was able to in the past. It only showed an icon to video chat with one person. Please help!!!! ASAP

    Hi,
    Check the iChat Menu > Preferences > Video Section > Bandwidth setting.
    iChat needs to see a Minimum of 128kbps to do 1-1 chats in Video
    For 3 and 4 way chats it needs 384kbps
    Set the Bandwidth to 500kbps if it is set lower.
    Also check the speed you are getting from your Internet supplier.
    9:28 PM      Thursday; February 23, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Acrobat stop when open more then one document

    Hello
    when I try to open more then one PDF Acrobat hang.
    I must kill the process and then I can open one PDF again.
    It does not work independently I try to open the second PDF by double-click or with the menu inside Acrobat.
    I use Adobe Acrobat XI (11.0.0) on a Windows 7 64-Bit system.
    I try to deinstall Acrobat completly and reinstall it but without success.
    I could not really say until which time it works but I know that it is working in the near past.
    Can somenody tell me why it doesn´t work?
    What happen? What could be the reason?

    Please update the Acrobat 11 to 11.0.6 via Help -> 'Check for Updates' option  and then see if issue still exist.
    Regards,
    Anoop

  • More then one E-mail address per insurance provider

    Hello to you all,
    Does anyone have an Idea on how can I maintain more then one E-mail address per insurance provider?
    In Tcode NG07/8/9 I am able to have only one which is not enough,
    I would expect to have a multiple selection on that field like in customer master record Tcode FD01/2/3.
    Regards,
    Yoav

    Dear Yoav,
    In the Tcode NG07 only one mail id is given because from here you can send the files directly on clicking the mail icon. Because when you click on mail icon(adjacent to box)  it shows whom you are sending the data, here you can also mark CC & BCC to the different users.
    In Customer you are not mailing directly. If you have any query you can reply back.
    Regards
    Piyush

  • How to show more than one record at a form-like style report?

    Hi All,
    I developed a form-like style report
    I want it to show more than one record at once (At the same page)
    I tried that by setting the value to "Maximum records per page" property for the repeating frame to 10
    but when I close the property palete and open it agian the value is returned to 1 !!!
    how to show more than one record at the same page?????
    Thank u

    Hi,
    there's perhaps another property like "page protect". If than 2 records didn't fit at one page there's a page break. Or is there any object inside the repeating frame with page-break properties? Sorry .. it's like looking into a chrystal ball ...
    Regards
    Rainer

  • Master_detail for more than one record at a time

    Hi,
    How can i display master_detail records for more than one records at a time, for example, i have two tables A and B , A has username and role and B has username and profile. here i wanted to display 10 users at a time on my 6i form with username, role and profile.
    i have created a master-detail relation ship with these tables when i'm executing F8 on blcok A , it displays 10 records on BlockA but, only one at a time on block B, how can i display all corresponding records on block B at a time.
    Thanks for your help.Bcj

    Thanks Roberts, that was realy informative due to some doubts i would like to confirm my requirements , i have two blocks A and B and each master record has only one detail record. but i wanted to display at least 10 master_detail relationships(records) on the form at a time, i would like to know is it possible to do without creating any table or view for example,
    data in table A,
    username role
    AAA R1
    BBB R2
    CCC R3
    data in table B,
    username profile
    AAA P1
    BBB P2
    CCC P3
    i wanted to display it on form like below,
    username role profile
    AAA R1 P1
    BBB R2 P2
    CCC R3 P3
    Also would like to know that how can i select data from dba_users, any restriction is there on forms 6i, i can select it on sqlplus.
    Thanks Again, Bcj

Maybe you are looking for

  • Installing OS 10 on an old G4

    I recently acquired an old G4/400 Mhz desktop that has OS 9.22 installed. I'm thinking about installing OS 10.2 or 10.4 on it. Besides the common sense precaution of backing up data, is there anything else I should be concerned about?

  • Module & Image Mgr. not working

    Below are the instructions for inserting a photo from the gallery. I have done it many times before. there is No image editor but a image manager - I did upload the images from my computer but it has no buttons to close it down, I have to refresh to

  • Serial number in ssrs

    Hi... In my report i used serial no but it is now coming 1 2 3 like this it showing 1 4 6 like this. may i know what is the reason behind that please help me

  • Windows Server 2003 R2 on MacBook Pro?

    I've spent some time on Google and it seems some people have installed W2K3R2 with Boot Camp but they have a variety of driver issues. From what I've read the keyboard mapping is the most problematic issue initially? If anyone here in the forum is ru

  • Can we schedule Loader Jobs (SQL Loader) using Grid Control  ?

    Can we schedule SQL Loaders jobs/process using Grid Control for 11g database ? Or Is it good to schedule it as external jobs using DBMS_SCHEDULER ? OS is LINUX. Database is 11g R1 Grid Control will be the latest, I believe 10gR3. Any other suggestion