Insert event valuation in PSV2

Hi,
I need a standard function module or a massive method to insert event valuation in PSV2. I have to get these information from another system ad put them in SAP with a program. Have someone an idea? Help me please. THANKS

Ali, how did you implement the myGirdRS.isDirty() function? It seems the _isDirty from navigationbar source code returns the value based on the entire sessionInfo. So when you have a pending transaction then open up a reference window to look up a value, when you close the reference window, the isDirty returns true? which is not true for the case of the reference window at all, any help???                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • OIM pre-insert event handlers

    Hello
    I've created a pre-insert event handler to generate a random password and email it to user manager. If reconciliation failed, the inserted record is rolled back but the event still generate and send password 3 times. Is there any solution for that?
    If I divide that event in 2 parts; 1 pre-insert to generate the password and the other post-insert to send it , I will not have access to the user password!
    Thanks in advance

    Actually I was wrong, OIM allows access to user's password in PLAIN TEXT. Keeping in mind that it will mostly be the password for all user's resources, this is such a critical security risk.

  • Calendar can't access/insert events on a specific date

    Since 2009 I've been experiencing problems inserting and viewing events around the day october 17th - weird but is my marriage date.
    I know that very well because was the time I started using alot more the calendar because of the huge "to do lists" I had that time. Since then I tried to export date (backup) delete the files and restore the date. Somehow every oct 17th on my calendar (+one day more o less) is blocked on my computer.
    Unfortunately I don't have a genius bar in Brasil and during trips to the US I always had limited time and in Miami a representative asked me to re-install everything but wasn't possible at that time. I did it afterwords - by myself - and didn't chance. Now, with mavericks I went to 2010 for no reason and found out it is finaly working fine all years since 2009. Problem: now the October 20th is behaving just like.
    Seem to me that I can't access the day but when I change de view from month to week I see there's no sunday oct 20th at all (see attach_1) and whe I change to daily view the right side of the day is empty and all my tries to add an event on the 20th ended up on the 19th...
    What can I do ? I use macbook air with mavericks just upgraded.
    Thank you.
    Claudio.
    Rio de Janeiro - Brasil.

    Hi,
    Your problem seems to be similar to mine, with events changing 1 day position.
    https://discussions.apple.com/message/23568141#23568141
    Before Mavericks I used latest Mountain Lion, without this problem for sure.
    To me, seems like a bug that Apple needs to solve.
    Regards,
    Fabrício

  • Inserting Event Video (FMR) & Audio Sounds Tinny

    Hi everyone!
    I created a software simulation, published it as a MP4 and then inserted it into a new project as an Event Video.
    The audio sounds ok when i play the published version back - But when I insert it in the second project & listen to that published project, that video sounds like I recorded it inside of a tin can.
    I'd like to not have to re-record the whole simulation because it took me an entire day to do what I did...
    Does anyone have any suggestions on what I can do to make that tinny sound go away?
    Thanks,
    Denise

    quote:
    Originally posted by:
    namitagrawal
    What capture device are you using ? ( camera/webcam? etc.)
    Can you provide any log files?
    We're doing a 4 camera switched feed. Using Anycast switcher,
    Panasonic 1/2 chip cameras, good program audio, unbalanced
    auido/y-c video out to DAC 2 converter to firewire. Using Dell
    Latitude D820 to stream remotely to our Flash server.
    Our production audio levels are good to the encoder but the
    quality encoded audio output is below our standards

  • INFO ON Pre-Process Event Handler ,recon rules, pre insert event handler

    Hi Experts
    Can any one explain me theses terms what is their purpose ...

    recon rules -- rule is nothing but a condition or filter which is applied while reconciling user into OIM.Based on these rule either user record is created or updated in OIM which is again specified in Resource object->Action Rule
    event handler--- A peace of code which get executed if certain event(Insert,Update/Modify and Delete) or action occurs in OIM. Very much similar to Database Triggers.
    Now each and every Event has two stage. either Pre or Post.
    Ex:
    Pre-Insert-> It will be executed before something inserted in Database. for example before user creation
    Post-Insert->It will be executed after something inserted in database. For example after user creation.

  • Javascript Onclick event on INSERT button - Kind of urgent

    I PUT THE FOLLOWING CODE ON THE JAVASCRIPT EVENT "Onclick" FOR THE INSERT BUTTON.
    onClick:
    var x=window.confirm('Are you sure ?')
    if (x)
    do_event(this.form,this.name,1,'ON_CLICK','');
    else
    return false
    IF I CLICK "OK", THEN THE FORM VALIDATION FIELDS JAVASCRIPTS STARTS TO COME UP (like NULL fields, etc...) AND ALSO THE INSERT PL/SQL CODE IS STARTED.
    THEREFORE, I RECEIVED THE ERRORS FROM THE JAVASCRIPT VALIDATION FORMS BUT I ALSO RECEIVE THE ORACLE DATABASE INSERT ERROR .
    WHY IS THE PROGRAM EXECUTING THE PL/SQL INSERT EVENT HANDLER IF I HAVE PRIOR ERRORS ?
    I AM DOING SOMETHING WRONG?
    ANY HELP WILL BE MUCH APPRECIATED..
    TKS!

    Hi,
    I think that your Javascript code is calling the do-event code for the form, where all that you need to do is stop if there is a problem, as the event has already started and the form validation will run if your onclick code returns true.
    if (window.confirm("Are you sure?")) return true;
    else return false;
    Regards Michael

  • How to show a message in a form 'PL/SQL Button Event Handler'

    We need validate the sal of an employee, and if it is bigger the value musts
    not be inserted.
    We trying a code like the one shown in the note 134312.1 'HOW TO PASS A
    PARAMETER FROM A PORTAL FORM TO A STORED PROCEDURE' and it works in the insert event of the insert button (using 'PL/SQL Button Event Handler') and it works, but we need to show a message that says the data wasn't inserted. How can we do this?
    The code we used is:
    declare
    v_deptno scott.emp.deptno%type;
    v_empno scott.emp.empno%type;
    v_sal scott.emp.sal%type;
    mySal scott.emp.sal%type;
    v_string varchar2(256);
    blk varchar2(10):='DEFAULT';
    begin
    select sal into mySal from scott.emp where empno=7369;
    v_deptno:=p_session.get_value_as_number(p_block_name=>blk,
    p_attribute_name=>'A_DEPTNO');
    v_empno:=p_session.get_value_as_number(p_block_name=>blk,
    p_attribute_name=>'A_EMPNO');
    v_sal:=p_session.get_value_as_number(p_block_name=>blk,
    p_attribute_name=>'A_SAL');
    v_string:='You just inserted empno: '||to_char(v_empno) ||'to deptno ->
    '||to_char(v_deptno);
    if mySal < v_sal then
    doInsert;
    else
    -- We want to display a message here, when mySal > v_sal
    end if;
    end;
    ----------------------------------

    I did something similar but wasn't using a stored procedure. Couldn't you set a flag variable once you know you're not doing the insert and in the "before displaying the form" section put an IF to check if your flag was set, and if so do an HTP.Print('You are overpaid buddy!');
    Then just reset your flag.

  • Show a insert trigger error message on a compiled form

    Good Morning
    Is there any way to get a oracle complied form to display a message
    from a trigger insert event.
    My problem is that we have proprietry oracle froms application (with compiled
    forms and no source code. I need to raise some sort of warning message
    from the form when certain condition occurs.
    I have tried using some code like below in the trigger
    but the dbms_output.put_line does not output anything
    nor the EXCEPTION
    DECLARE MY_ERROR exception;
    begin
    DBMS_OUTPUT.ENABLE;
    dbms_output.put_line('outputting this message');
    raise MY_ERROR;
    EXCEPTION
    WHEN others THEN Raise;
    END;
    thanks
    David Hills

    You don't need to get at the source code of the form. The example you gave will stop the execution of any process and you said it should happen for an insert event. So a Raise_Application_Error in a database trigger would be sufficient.
    Hopefully the vendor has put code in their on-error triggers which will cut the message out of a user-defined exception and display it as an alert (this is so much a better method than returning numbers to indicate success or type of failure). If not then the message will be rather ugly but it will at least get the job done.
    James.

  • How to insert and delete a row after filter applied

    I thought I had figured out the solution to this problem but apparently not...
    How do you insert a new row into a JTable after a filter has been applied? The problem is once the data is filtered when I add a row, I'm getting an ArrayIndexOutOfBoundsException : 182 which is the number of rows for the entire dataset.
    The first line in the exception is: DefaultRowSorter.setModelToViewFromViewToModel
    I've tried to use, getRowSorter().convertRowIndexToView(int) but I can't get it to work. Can anyone offer any assistance?
    Thanks

    I also got that problem recently and after debuging for a while I figured out, that it was resulting from an error in my table's model: When the model received new items to display I
    1.) Fired an delete event for the old items
    2.) Fired an insert event for the new items
    Problem was that when firing the delete event I didn't already assigned the new items to the model. Therefore it had still the old row count.
    Maybe you have also a faulty table model?...

  • Event Handlers OIM 11g

    Hi Folks ,
    I am very new to OIM 11g , Could you please help me on below :
    I have a OIM system, i want to see what all event handlers are present in OIM . Could you please tell me where can i go and look to find out the event handlers in my
    OIM instance .
    Thanks
    P

    OimWannaBe wrote:
    Thanks i will go through the links .., just one more question :
    In 11g , creating normal process task adapters /scheduled tasks , does it involve all the plugins stuff etc .., or they are like 10 g and plugins comes in to picture when we create event handlers .No, process task adapters are the same old way, just that you need to upload the jar into the db rather than copying them. Other than that everything else needs plugins atleast.
    Other Ques :
    Is it possible to create pre process/pre insert Event handlers in OIM 11g for trusted reconciliation . I heard somewhere that 11g doesnt support pre insert event handlers for trusted recon , is it ?Yep you heard it right, you cannot have event handlers during 11g recon pre process.
    Thanks
    Preeti.Edited by: Bikash Bagaria on Dec 29, 2011 10:39 PM

  • Events in Application View

    Hi,
    Am using Weblogic 6.0 Sp2 and WLAI 2.0.
    I was working with DBMS adapter that comes along with WLAI. I created an
    Application View and added
    2 update events, on the same table, to it. But only 1 event gets registered
    with it. What I mean is, as both the
    events are on the same table (CUSTOMER_TABLE in this case) and of same type
    (UPDATE here), only one
    of them is notified of the event.
    I was testing both of these events simultaneously on 2 separate browsers
    (with sufficient wait time), and only 1 of
    them was notified on the event, the other was timed out. I tried with more
    than 2 events of same type, and the same thing
    happened.
    It seems that weblogic is registering only 1 event of each type defined for
    the same table.
    Like I defined 3 insert events and 4 updated events on the same table (in
    the same application view),
    and only 1 of each type, i.e. one of insert and one of update, got
    registered, and only those are notified,
    others just time out.
    Is there anything wrong am doing, or is it a bug somewhere ?
    Thanks
    Amit Chauhan

    Hi Chris,
    Everything was on 1 machine. Weblogic server as well as all the 3
    browsers.
    Out of the 3 events, one of them generated the event using an
    'updateService' in the application view,
    which updated just 1 record. (While testing the event you have the option of
    manual or service).
    The other 2 events were waiting with sufficient time delay. (running with
    manual option of testing the event)
    But after the event only 1 of them got notified and all other timed out.
    Thanks
    Amit
    Chris Stead <[email protected]> wrote in message
    news:[email protected]...
    Amit,
    Were you on three different machines, or did you have three browsers onone
    machine?
    Were you updating different records (customers) or the same record?
    Chris
    Amit wrote:
    Chris,
    Its not my requirement, I was just working with and testing the DBMS
    adapter that comes along with WLAI.
    This is what I did. I created an Application View AV1. I created 3
    update
    events E1, E2 and E3 in this application view.
    All were update events on the same Customer_Table. Again, its not the
    requierment, I was just trying out, how these events work.
    I tested all these three events simulatenously in 3 differnt browsers.So
    they all were waiting for that event to occur. I updated a customer
    record, so I was hoping that event notification will come to all the 3
    events in the 3 browsers. But only 1 of them got notified, other 3 timed
    out.
    So I was just wondering, is it the correct behaviour of events or isthere
    something wrong ?
    Hope am a bit clear.
    Thanks
    Amit
    Chris Stead <[email protected]> wrote in message
    news:[email protected]...
    Amit,
    Please explain what you are hoping to accomplish with creating 3
    events of
    the
    same event type. The application view sees an insert on theCustomer_Table as
    one event, even if it is defined three times.
    When a customer get inserted into the Customer_Table, from the EIS'perspective,
    that is one event. We can define several business rules based on that
    one
    event
    and don't need to define the event three times. But, maybe I am
    missing
    something, please let us know why you have approached it this way.Thanks.
    Cheers,
    Chris
    Amit wrote:
    Thanks Mitch.
    Can you please also explain the behaviour, in case of 1 Application
    View
    AV1
    having 3 events E1, E2 and E3 all
    related to Customer_Table insert evetns. According to what you told,
    it
    will
    create 1 insert trigger on customer_table
    for all the 3 events. So when the a customer record will be insertedinto
    the table, then it will generate 1 event and will
    pass on to the event router, and then event router should route this
    to
    all
    the 3 listeners.
    But whats actually happening is, the event router, delivers the
    event
    notification to only 1 of the 3 events.
    You can try this on the DBMS adapter that comes along with ADK.
    I was using WLAI 2.0
    Thanks
    Amit
    Amit Chauhan
    eTouch System
    510-795-4800 ext 113
    Mitch Upton <[email protected]> wrote in message
    news:[email protected]...
    Amit,
    In general, you can only have one trigger of a given type on a
    table.
    Some
    databases support multiple 'insert' triggers, but some don't.
    As your original problem, you can have multiple application viewsagainst
    the same
    database instance (same server in the case of MSSQL) and each can
    have
    multiple
    events that are named differently, but refer to the same table and
    trigger
    type
    (e.g. insert, update, delete). The event router elliminates
    duplicate
    table/trigger combinations and sends the unique list to the eventgenerator. The
    router DOES remember all event types, and will deliver events to
    all
    subscribers
    regardless if they were the 'first' to request a table/triggercombination.
    For example, I can have 2 app views AV1, and AV2, where AV1
    defines E1
    to
    be
    related to Customer_Table insert events, and E2 to be related toCustomer_Table
    insert events. The event generator attached to the database
    instance
    will
    see only
    E1's subscription, and install a trigger on Customer_Table for
    insert.
    >>>>>
    When I insert a record into Customer_Table, the generator willgenerate a
    SINGLE
    event, and deliver it to the router. The router will deliver TWO
    events,
    one to
    AV1 (as E1 event type), and one to AV2 (as E2 event type).
    Deleting AV1.E1 will NOT cause the generator to delete the insert
    trigger
    on
    Customer_Table. It will remain until someone deletes AV2.E2.
    I hope this helps...
    Mitch
    Amit wrote:
    Thanks Steven,
    Is this a restriction from ADK coz this is not a restriction
    from
    database. I think, in database, you can have n number oftriggers
    of one type on one table. Like there can be 5 update triggers on
    customer_table.
    Thanks
    Amit
    Steven Donovan <[email protected]> wrote:
    Amit,
    I am not sure if you can have multiple events of the same
    type on the same table. The database itself can only have
    one trigger on the table for an update and/or one for an
    insert. However, with a single event, I was able to get
    both browsers notified of the event by using the test feature
    for one in manual mode (this will cause it to simply wait for
    the specified time listening for events) and testing the other
    with a service that generated an event. You will have to
    start the manual one first for this.
    Hope this helps,
    Steven Donovan
    Amit wrote:
    Hi,
    Am using Weblogic 6.0 Sp2 and WLAI 2.0.
    I was working with DBMS adapter that comes along with WLAI. I
    created
    an
    Application View and added
    2 update events, on the same table, to it. But only 1 event
    gets
    registered
    with it. What I mean is, as both the
    events are on the same table (CUSTOMER_TABLE in this case)
    and of
    same
    type
    (UPDATE here), only one
    of them is notified of the event.
    I was testing both of these events simultaneously on 2
    separate
    browsers
    (with sufficient wait time), and only 1 of
    them was notified on the event, the other was timed out. I
    tried
    with
    more
    than 2 events of same type, and the same thing
    happened.
    It seems that weblogic is registering only 1 event of each
    type
    defined
    for
    the same table.
    Like I defined 3 insert events and 4 updated events on the
    same
    table
    (in
    the same application view),
    and only 1 of each type, i.e. one of insert and one of
    update,
    got
    registered, and only those are notified,
    others just time out.
    Is there anything wrong am doing, or is it a bug somewhere ?
    Thanks
    Amit Chauhan--
    Mitch Upton
    Architect - Application Integration
    BEA Systems
    Denver, 5th Floor
    [email protected]
    (720)528-6087

  • Process Task Child Table Delete Event passes empty values

    Hi All,
    I'm trying to implement a delete event in a process task for a child table. I am assuming the value to be deleted
    should be getting passing into the adapter but it's passing empty strings instead. The insert event is working fine however.
    Any one else using the delete event that works?
    Thanx
    Fred

    Hi Kevin.
    Any idea how to programmatically access the "old value" variant of a form field?
    It's the sort of thing one needs occasionally when a value changes and some associated capability needs to be updated. The old value specifies what needs to be removed while the new value tells the system what is to be added in its place.
    (It so happens in our environment that we have dozens of these values per user profile, so it would be very painful to store "old" values in a parallel set of fields.)
    Thanks,
    Dan

  • Missed and duplicate events with Continues Query Cache

    We have seen missed events and duplicate events when we register to receive events (using Continues Query Cache) on an entry in the cache while the entry is updating.
    Use case:
    Start a Node
    Start a Proxy
    Start Extend Client
    Implementation of the Extend Client
    Create Cache
    Add Entry to Cache
    Initiate Thread 1 {
          For each ( 1 to 30)
              Run Update Entry Processor on cache entry; Entry Processor increments the Cache Entry value by 1 
    Initiate Thread 2 {
         wait until Cache entry is updated 10 times
         Create MAP Listener {
              For Entry Insert Event {
                            Print event
                   set Initial value = new value
              For Entry Update Event {
                            Print event
                   set Update value = + 1
         Initiate Continues Query Cache (cache, Always Filter, MAP Listener)
    Start Thread 1
    Start Thread 2
    Waits until Thread 1 and Thread2 are terminated
    Expected Result = read the value of the entry from cache
    Actual result = Initial value + Update value
    Results we have seen in two tests_
    Test1: Expected Result > Actual results: Missing events
    Entry Inserted Event: MapEvent{ContinuousQueryCache inserted: key=1, value=UpdateObject [intNumber=1, longNumber=13]}
    +Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=13], new value=UpdateObject [intNumber=1, longNumber=15]}+*
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=15], new value=UpdateObject [intNumber=1, longNumber=16]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=16], new value=UpdateObject [intNumber=1, longNumber=17]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=17], new value=UpdateObject [intNumber=1, longNumber=18]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=18], new value=UpdateObject [intNumber=1, longNumber=19]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=19], new value=UpdateObject [intNumber=1, longNumber=20]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=20], new value=UpdateObject [intNumber=1, longNumber=21]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=21], new value=UpdateObject [intNumber=1, longNumber=22]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=22], new value=UpdateObject [intNumber=1, longNumber=23]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=23], new value=UpdateObject [intNumber=1, longNumber=24]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=24], new value=UpdateObject [intNumber=1, longNumber=25]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=25], new value=UpdateObject [intNumber=1, longNumber=26]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=26], new value=UpdateObject [intNumber=1, longNumber=27]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=27], new value=UpdateObject [intNumber=1, longNumber=28]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=28], new value=UpdateObject [intNumber=1, longNumber=29]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=29], new value=UpdateObject [intNumber=1, longNumber=30]}
    Expected Result: 30
    Actual Result: 29
    Issue:+ Event on 14th update was not sent
    Test 2: Expected Result < Actual Result: Duplicate events
    Entry Inserted Event: MapEvent{ContinuousQueryCache inserted: key=1, value=UpdateObject [intNumber=1, longNumber=13]}
    *Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=13], new value=UpdateObject [intNumber=1, longNumber=13]}*+
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=13], new value=UpdateObject [intNumber=1, longNumber=14]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=14], new value=UpdateObject [intNumber=1, longNumber=15]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=15], new value=UpdateObject [intNumber=1, longNumber=16]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=16], new value=UpdateObject [intNumber=1, longNumber=17]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=17], new value=UpdateObject [intNumber=1, longNumber=18]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=18], new value=UpdateObject [intNumber=1, longNumber=19]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=19], new value=UpdateObject [intNumber=1, longNumber=20]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=20], new value=UpdateObject [intNumber=1, longNumber=21]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=21], new value=UpdateObject [intNumber=1, longNumber=22]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=22], new value=UpdateObject [intNumber=1, longNumber=23]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=23], new value=UpdateObject [intNumber=1, longNumber=24]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=24], new value=UpdateObject [intNumber=1, longNumber=25]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=25], new value=UpdateObject [intNumber=1, longNumber=26]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=26], new value=UpdateObject [intNumber=1, longNumber=27]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=27], new value=UpdateObject [intNumber=1, longNumber=28]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=28], new value=UpdateObject [intNumber=1, longNumber=29]}
    Entry Updated Event: MapEvent{ContinuousQueryCache updated: key=1, old value=UpdateObject [intNumber=1, longNumber=29], new value=UpdateObject [intNumber=1, longNumber=30]}
    Expected Result: 30
    Actual Result: 31
    Issue:+ Event on 13th update was sent in Insert and Update events both
    reg
    Dasun.

    Hi Paul,
    I tested with 3.7.1.4 and 3.7.1.5. In both versions I can see the issue.
    reg
    Dasun.

  • OIM entity adapters vs event handlers

    Hi everyone
    What is the difference between running code in a pre-insert entity adapters and pre-insert event handler?
    I have an adapter that generates and emails random user password but it has some undesirable actions such as running multiple times even though trusted reconciliation has failed. Are event handlers more suitable for this task?
    Thanks in advance

    event handler:A resource object's provisioning process contains tasks that must be completed automatically. When this occurs, you must assign an event handler or an adapter to the resource object. An event handler is a software routine that provides the processing of this specialized information
    adapter :An adapter is a specialized type of event handler that generates Java code, which enables Oracle Identity Manager to communicate and interact with external resources.
    Edited by: sk on Sep 9, 2010 2:53 AM

  • Windows device event notification

    Does anybody know if it is possible to have a VI notified of a device insertion event in Windows? I have a VI that I would like to kickstart in the background if a USB keyboard is plugged in because I don't want it running all the time. It would also be useful if I could receive notification when a USB flash drive is plugged in.
    Searching on MSDN's website I found out about the System Event Notification Service but I don't think that is going to do what I need. I also know that I can read and monitor the Windows Event Viewer but it does not log device insertion events from what I can tell.
    Kyle

    This has been asked before. Check out this thread:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=249567&requireLogin=False

Maybe you are looking for