What event is fired when notification close ?

Hi,
I've subscription "oracle.apps.wf.notification.close" event,but when notification close my codes don't still work and have no exception come out !
I've try my codes by subscription "oracle.apps.wf.notification.send" event , and when notification send it can work ! I'm sure that there have no different between the subscription "oracle.apps.wf.notification.close" and the subscription "oracle.apps.wf.notification.close" in the subscription step .
Doesn't when notification closing raise the "oracle.apps.wf.notification.close" event?
I need your help!
thanks,
Your friend, yao!

Pl post details of OS, database and EBS versions. Is the "oracle.apps.wf.notification.close" event enabled ?
HTH
Srini

Similar Messages

  • What event is fired when

    Hi Everyone,
    I have a page that is displayed using
    CompleteAuditController *screen = [[CompleteAuditController alloc] initWithNibName:@"CompleteAuditWindow" bundle:nil];
    screen.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
    [self presentModalViewController:screen animated:YES];
    [screen release];
    So when this is done on the CompleteAuditWindow page
    [self dismissModalViewControllerAnimated:YES];
    What event (if any) is fired on the caller page??
    in essence, I need to know when this page become the active page on the stack.
    Thank you
    take care
    tony

    Both [viewWillAppear:|http://developer.apple.com/iphone/library/documentation/UIKit/ Reference/UIViewControllerClass/Reference/Reference.html#//appleref/occ/instm/UIViewController/viewWillAppear:] and [viewDidAppear:|http://developer.apple.com/iphone/library/documentation/UIKit/R eference/UIViewControllerClass/Reference/Reference.html#//appleref/occ/instm/UIViewController/viewDidAppear:] should be sent to the parent controller object. - Ray

  • What event is fired when a new native window is created

    And where do you add the event listener?  SystemManager?
    Thanks in advance

    I see your point. It is useful to have an event to let you know when a new window has been created and another when it is shown. You could add that  functionality easily by subclassing the NativeWindow class. (In Flex, you could also subclass the Window class.)
    I will add your recommendation for a systemManager level an event to our list of suggested features. Thanks.

  • What Event is Triggered When a Title Window is Shown?

    I am creating the Title Window Component once, and then
    showing it with PopUpManager.addPopUp, and hiding it with
    PopUpManager.removePopUp. I need to run some logic each time the
    PopUp is shown. However, I can't figure out what Event is triggered
    when the TitleWindow is "opened". The window is there, it's just
    not being displayed. This make me think that "show" would be
    triggered, but it is not. I also tried "add", but this threw a RTE.
    Any thoughts?
    Thanks.

    Since I couldn't find an Event to trigger, I am instead using
    an override of protected function commitProperties() to run my
    logic.

  • What event is called when the handle next to a tree node is clicked

    Hi,
    I have a JTree...and the nodes in the tree have a little handle next to them. When i click on the handle, the children of that node, are shown below (as expected). However, what event occurs before the treeExpanded event is fired?? it seems like something happens just before it.
    thanks

    Post your code, I dont think any event except treeExpanded is fired.

  • What event tells me when any data changes in a mx:datagrid?

    I have a mx:datagrid that I need to have an event tell me when anything at all changes in the datagrid. The datagrid can be empty and as such may not have a dataprovider (=null) some of the time. I have looked at a variety of events but none seem to do what i want - can anyone suggest what event i should be listening for please?
    many thanks,
    Mark.

    We have not formalized the concept of nested collections in Flex.  However,
    let me amend my recommendation a bit.
    Typically in a nested collection, the objects in the top-level collection
    are not just collections but an object with some other reference data and
    then a collection like:
        public class FamilyTreeItem
            public var name:String;
            public var children:ArrayCollection;
    The top-level collection is listening for propertyChange events.  Typically,
    as a data item gets modified, a propertyChange event is dispatched.  If the
    data items do not dispatch propertyChange events, then the itemUpdated()
    method is used.  Either way, the result is a COLLECTION_CHANGE event from
    the top-level collection.
    When you have a nested ArrayCollection, while that sub-ArrayCollection is
    dispatching COLLECTION_CHANGE, nobody is listening for it at the top-level.
    You can dispatch it yourself, or you can call itemUpdated() on the top-level
    or dispatch a propertyChange.
    The latter will be the most work, but most general.  Code in FamilyTreeItem
    would attach a listener to the collection for COLLECTION_CHANGE and then
    dispatch a propertyChange as appropriate.

  • Lync Phones Disconnect Events are Firing when a call is answered

    Im working with Lync client SDk 2013. I am trying to write a simple desktop application to determine when a call is Ringing, Answered, and Disconnected. I testing my application using Lync Desk phone (polycom phones). When i call my Lync phone, i get a "Notified"
    event, and when That call is answered, i get a "Disconnected" event.
    private static LyncClient _client;
    private static void Main()
    _client = LyncClient.GetClient();
    _client.ConversationManager.ConversationAdded += ConversationManager_ConversationAdded;
    _client.ConversationManager.ConversationRemoved += ConversationManager_ConversationRemoved;
    Console.ReadLine();
    static void ConversationManager_ConversationAdded(object sender, ConversationManagerEventArgs e)
    e.Conversation.Modalities[ModalityTypes.AudioVideo].ModalityStateChanged += Program_ModalityStateChanged;
    static void Program_ModalityStateChanged(object sender, ModalityStateChangedEventArgs e)
    Console.WriteLine("Modality state changed "+ String.Format("{0} => {1}", e.OldState, e.NewState));
    static void ConversationManager_ConversationRemoved(object sender, ConversationManagerEventArgs e)
    //....some code.
    }output from this code isModality state changed Disconnected => NotifiedModality state changed Notified=> DisconnectedI did come across few nice articles, but those don't seem to help me.http://blog.thoughtstuff.co.uk/2013/01/tracking-lync-conversations-in-code/http://msdn.microsoft.com/en-us/library/office/hh345194(v=office.14).aspxIs there any way to determine when the call is answered and disconnected?Thanks

    Hi,
    You might post the issue on Lync MSDN forum and more developing expert will help to verify if this can be achieved using Lync SDK. Thank you for your understanding.
    http://social.msdn.microsoft.com/Forums/en-US/communicatorsdk/threads
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • What happens to objects when I close a query?

    Hi,
    In my application I do a JDO query a couple of layers down in the
    architecture. I need to return these results to a higher layer. In the
    layer where I do my query, I add the objects to another Collection than
    the one given as a result of query.execute(). What happens to my
    objects when I call query.closeAll() before returning the result sets to
    the higher layer? Will they be made transient? Will I still be able to
    traverse the object graph? The JDO spec only states "that the results
    remain in their current state", although I am not so sure what exactly
    that implies.
    Thanks,
    khamsouk

    The objects returned from a query become part of the owning
    persistence manager's cache. That means they're under JDO
    management until the persistence manager is closed (or until
    you make them transient yourself). Basically retrieving objects via
    a query is just like retrieving them through a relation or via
    PM.getObjectById.

  • JToolBar -- what event is fired to make toolbar a frame?

    Hi,
    I want to know when a toolbar becomes a frame. For example, if the user drags the toolbar out of the borderlayout..and the toolbar becomes a floating frame...how can I tell whent his occurs?
    thanks

    Never mind I simply added a mouse listener to the tool bar and in the mouseReleased event i just do something like,
    ((BasicToolBarUI) getUI()).isFloating()

  • Which event gets fired when we move out of Flex Screen

    I want to validate the user detail screen and infrom user if
    any error when he moves out of flex screen.
    Basically we have submit button out of flex area and user
    enters detals in flex screen and submits using jsp header

    flash.events.Event.MOUSE_LEAVE Dispatched by the Stage object
    when the mouse pointer moves out of the stage area.
    Should work for ur situation I guess.

  • I've subscription "oracle.apps.wf.notification.close" event ,but not work!

    Hi,
    I've subscription "oracle.apps.wf.notification.close" event,but when notification close my codes don't still work and have no exception come out !
    I've try my codes by subscription "oracle.apps.wf.notification.send" event , and when notification send it can work ! I'm sure that there have no different between the subscription "oracle.apps.wf.notification.close" and the subscription "oracle.apps.wf.notification.close" in the subscription step .
    Doesn't when notification closing raise the "oracle.apps.wf.notification.close" event?
    I need your help!
    Best regard!
    Your friend, yao!

    Please do not create duplicate posts across the forums -- What event is fired when notification close ?

  • How can i handle with event, when i close a file (notped or word,excel..)??

    How can i handle with event, when i close a file (notped or excel...). i want do something..
    Edited by: Legy on Apr 21, 2008 11:45 PM

    of course notepad.exe is closed again as soon as the operating system has completed the process of loading its content into memory...
    And no "event" is fired when that happens, except maybe internal to the process that loaded the application to indicate that it's been loaded successfully and can now be executed.
    But there's no way your Java process is ever going to receive that notification.

  • Event firing when XML data is imported via Acrobat

    When a user in Acrobat imports xml data into a form, what event gets fired? I have a couple of actions that occur on change, but when I import xml into the form (to fill in values, etc), this event doesn't fire. Is it on initialize?

    Yea, I dug a little deeper and ended up using the initialize event. What I did was on the initialize event I execute the exit script. So it's the same as the user physically putting the value in. Plus, I dont have to have the same code in two places.
    In the initialize event code:
    myThingie.execEvent("exit");
    Pretty cool little function if you find it useful. Thanks for the reply.

  • Sometimes when I close Firefox and try to open it in few moments it shows me message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." However, I haven't o

    Sometimes when I close Firefox and try to open it in few moments it shows me message "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." However, I haven't opened any additional Firefox related programs, and previous Firefox is closed. First I though it is because of my computer, but then I discovered that other people have the same problem as well
    == This happened ==
    A few times a week
    == some 2 month ago ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; InfoPath.2; .NET CLR 3.0.30729)

    Hi Andis.
    First of all, this is completely normal behavior, although it's a bit irritating, I know. What happens is that when you close Firefox, despite the window disappearing right there and then, Firefox keeps running for a little bit until the whole closing procedure is completed. This can take a fraction of a second on fast computers, or can take a few seconds on slow computers or when Firefox is storing a large session (if you save your tabs). All you have to do is wait a bit until Firefox closes, and then open it again.
    To see if it's still running, you can press CTRL+SHIFT+ESC and then, under the Processes tab, you can see if firefox.exe is still there. If it's taking an unusual amount of time to close (which happens very rarely, and only if the browser freezes on exit), you can force the application to terminate from this application (task manager).
    Firefox 4.0 will reduce by 97% the time it takes firefox.exe to close, so this problem will be basically erased for Firefox's next version.
    Until then, I can recommend you this extension, which helps you restart your browser more easily and without bothering about closing times:
    https://addons.mozilla.org/en-US/firefox/addon/3559/
    Hopefully this will help.

  • Firefox stops loading new pages, displays "Loading". When I close it it goes. But when I restart it gives me "Another version is running, but not responding. This requires a power cycle reboot.

    Version 3.6.18. Running on Windows XP Pro. (kept current)
    This happens on a variety of pages. I get the little Loading thing in the tab, with the circle moving. So I X out (to exit Firefox). When I go to restart I get the error message "Another version of FireFox is running, but not responding". I give Windows the "three finger salute", and go to Task Manager, and do not see any reference to Firefox, and the Performance, and Processes seem OK. But it never seems to close the earlier Firefox, and won't let me open a new one. Any suggestions? Super Thanks for your help!

    Hi Andis.
    First of all, this is completely normal behavior, although it's a bit irritating, I know. What happens is that when you close Firefox, despite the window disappearing right there and then, Firefox keeps running for a little bit until the whole closing procedure is completed. This can take a fraction of a second on fast computers, or can take a few seconds on slow computers or when Firefox is storing a large session (if you save your tabs). All you have to do is wait a bit until Firefox closes, and then open it again.
    To see if it's still running, you can press CTRL+SHIFT+ESC and then, under the Processes tab, you can see if firefox.exe is still there. If it's taking an unusual amount of time to close (which happens very rarely, and only if the browser freezes on exit), you can force the application to terminate from this application (task manager).
    Firefox 4.0 will reduce by 97% the time it takes firefox.exe to close, so this problem will be basically erased for Firefox's next version.
    Until then, I can recommend you this extension, which helps you restart your browser more easily and without bothering about closing times:
    https://addons.mozilla.org/en-US/firefox/addon/3559/
    Hopefully this will help.

Maybe you are looking for

  • Mini-HDMI to VGA does not work with projectors having long cables

    Hi I use a ThinkPad Yoga with Windows 8.1 and have problems to get a video signal to some projectors using a Mini-HDMI VGA adapter like this http://www.amazon.com/Cable-Matters-Active-Female-Adapter/dp/B00879ELGA/ref=sr_1_1?ie=UTF8&qid=13979... Usual

  • Voice messages are no longer sent? to the iPhone (nor notification)

    iPhone 3G running iOS 4.0.2 I don't know how long this has been happening, but I am not able to get my voice mails without calling the mailbox (i.e. dialing myself from the iPhone). It also did not display missed calls either (no red circle number on

  • Safari too slow

    Safari is too slow in my macbook pro

  • Add on crashes when the form is opened many times

    Hi all, my addon for business partner master data form which creates short cuts to creating new contracts or new service calls works fine when the user loads the form and clicks the related buttons.  however, when they go back to the business partner

  • Slightly misled & eye strain - Macbook Retina Display

    Anyone else feel slightly misled over the new macbook "retina" display? Highest resolution ever in a laptop etc. Well it isn't it's still basically the same 1440x900 desktop as my old macbook even if it is underpinned by 4 x the pixels. If I deviate