Why do we release event first in transportation?

Hi gurus,
Why do we release event before releasing request in transportaions???
Thanks,
Khaja

Hi
u need to release the subtask fisrt and then the main task and untill and unless u dont do this u cant transport the request
thanks
Puneet

Similar Messages

  • How would you implement a "real" on key released event?

    Hello there.
    I'm looking into key bindings and I'm trying to implement a "keep doing as long as space is pressed" feature. Figuratively speaking the optimal solution would be:
    space key is pressed -> call something.start()
    space key is released -> call something.stop()
    The thing is, the space key can be held down for several seconds and that does not generate one clear pressed and one clear released event. Instead you get a whole series of pressed and released events during the whole time the key is being pressed down. Actually it's logical. Click on some input field on your screen and keep a key pressed, you will see what I mean. :)
    So if I try to use:
    getInputMap().put(KeyStroke.getKeyStroke("pressed SPACE"), "start");...and...
    getInputMap().put(KeyStroke.getKeyStroke("released SPACE"), "stop");I don't get what I want. Start and stop are being called like crazy.
    So now, what would be the best way to react only to the first pressed and the last released event? Discarding events that follow each other too fast doesn't seem like an elegant solution.
    Thanks
    Cap

    Instead of timers I chose the following IMHO simpler and more reliable solution:
    public class Button
         private boolean on;
         public Button()
              on = false;
              // React to the SPACE key.
              getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("pressed SPACE"), "do");
              getActionMap().put("do", this);
         /* The problem we have to deal with is that a key being held down for several seconds
          * actually fires a whole havoc of pressed and released events. On Windows it fires
          * only a havoc of pressed events and then one released event when the button is
          * finally released. To make the button work right at least on Windows we keep track
          * of the state of the button (on = pressed, off = released). As soon as the button
          * is pressed, it doesn't react to pressed events anymore, this way the pressed havoc
          * can be ignored. It still reacts to released events though, so when the key is
          * finally released, the button goes into the off state again. On Linux this will never
          * work, because not only the pressed havoc, but also the released havoc is fired. */
         public void actionPerformed(ActionEvent arg0)
              if (on)
                   // The button is on, let's turn it off.
                   getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("pressed SPACE"), "do");
                   getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("released SPACE"), "none");
                   on = false;
                   // TRIGGER SOME ACTION HERE
                   dont();
              else
                   // The button is off, let's turn it on.
                   getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("pressed SPACE"), "none");
                   getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke("released SPACE"), "do");
                   on = true;
                   // TRIGGER SOME ACTION HERE
                   do();
    }Things would be much easier, if it was possible to differentiate, if the Action was triggerd by a "pressed" or a "released" event. I don't see a way to get this information from the ActionEvent object. If someone knows a way, please do tell.
    Cap

  • When I updated to the latest IOS last night, why did the photo events date change?

    When I updated to the latest IOS last night, why did the photo events date change?

    The problem is that the Add-ons Manager tab when opened the first time, is on "Get Add-ons" section and that must be downloaded from the Add-ons server which might be overburdened.
    * If you need to look for new Add-ons, go directly to the Add-ons site -> https://addons.mozilla.org/en-US/firefox/
    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Add-ons are disabled after updating Firefox#w_check-for-new-versions-of-your-add-ons|Check for New versions of your Add-ons]]
    Check and tell if its working.
    Not related to your problem but some of your Plugins are out-dated
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    * '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''

  • I back up my iphone's icalendar to my MacBook. Why have some previous events disappeared in the phone but I can see them on the backup? How do I retrieve?

    I back up my iphone's icalendar to my MacBook. Why have some previous events disappeared in the phone but I can see them on the backup? How do I retrieve?

    Did you back it up to the cloud?

  • I have seen on this community that the earpods do not work on iPod shuffle gen 3 but when I was using on them it worked the control panel thing that is but only until I turned it off I don't understand why it won't work again and why it did in the first p

    I have seen on this community that the earpods do not work on iPod shuffle gen 3 but when I was using on them it worked the control panel thing that is but only until I turned it off I don't understand why it won't work again and why it did in the first place can someone please explain and tell me how to make it work again

    Sorry first time asking question didn't mean to write same thing twice well copy paste

  • Why iCal cancel of event edits issue is still not fixed after over 2 years?

    Why iCal "cancel of event edits" issue is still not fixed after over 2 years?
    I have been in the software engineering industry for over 14 years, but I have never seen a large corporation being so slow at addressing major issues like these.
    What would it take for Apple to start working on this issue?

    Yup. This is fully ridiculous that you can't cancel your updates once you start. I love the tool but this is on pretty significant issue.
    Sometimes I accidentally move a mtg or make some edit while viewing and you can't back you!!
    If you feel the same way, you should post a note here:
    http://www.apple.com/feedback/ical.html
    Message was edited by: SteveMc10123

  • Why does apple release seri in beta with many problems

    why does apple release seri in beta with many problems

    terryfromprescott wrote:
    why does apple release seri in beta with many problems
    That is the point of a beta version.
    Software in the beta phase will generally have many more bugs in it than completed software, as well as speed/performance issues. The focus of beta testing is reducing impacts to users, often incorporating usability testing. "
    http://en.wikipedia.org/wiki/Beta_version#Beta

  • Why can I only print first page

    Why can I only print first page of an email wirelessly with my brother printer

    Sophie Hubble which Adobe software or service is your inquiry in reference too?

  • To show the release status of the transport request

    Hello Experts,
    I am having a requirement like the following:
    I need to list the transports along with the release status of the transport request in a View.
    Release status means that transport request imported into Development system, Quality system and Production system.
    Which table will hold this information?
    I have checked with E070. But i dont know how to find in that. Or any other table is there to do this?
    Thanks and Best Regards,
    Suresh

    Hello Kalyan,
    I dont know how to find my request in TMSBUFTXT.
    For example i am having a TR now in Dev system: XXX45678.
    If i have imported it to Quality system, then how to find this entry?
    Or if i have imported it to Production system, then how could i find that the TR XXX45678 is now in Production system.
    Since i am creating a View, i need the information that in which Database Table this entry will be stored.
    I dont want Function module name.
    Best Regards,
    Suresh

  • Why do we lock objects in a transport ?

    hi,
    why do we lock objects in a transport in SE09 ? whats the benefit/impact ?
    thks

    Yes Thomas, today is my TRANSPORTS day
    and btw, just to confirm about locking, I have a transport moved from old system to the new one which contains this object say a function group!!.
    Now I modify this FG in the new system and include in a different transport.
    Due to some reason (errors encountered during transport movement), it is decided that the old transport is going to be moved from old system to new system once again. Will this impact the object that I have modified and included in the new request in the new system ?? Is it bcos of this I am asked to lock and continue my work on that ??
    hope i have not confused you

  • When I download a podcast on my iPhone why is the release date missing? This really screws up the sort order.

    when I download a podcast on my iPhone why is the release date missing? This really screws up the sort order.

    Hello yung ron,
    It may be that your iPhone's set to sync automatically, which can potentially remove any music that's been added to the device. It may help to set the device to 'manual mode,' so that you have complete and total control over what content is on the device.
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/HT1535
    Cheers,
    Allen

  • Does anyone know why video image in events section has a certain dimension and instead when I import same video in a clip, the size of video image is minor? Thanks for help

    Does anyone know why video image in events section has a certain dimension and instead when I import same video in a clip, the size of video image is minor? Thanks for help

    This may depend on your chosen encoding options for the Mails (MIME vs. Base64 or similar) and/or the mails being reduced in size and sliced up server side. Apple (and Google) do stuff like recompressing images when viewing mails on mobile devices from an Apple ID or Gmail account... You have to turn it off in their web frontends....
    Mylenium

  • Why is apple releasing the ipad4 witha new and inproved wifi attena without addressing the wifi issue in the ipad3

    Why is apple releasing the ipad4 witha new and inproved wifi attena without addressing the wifi issue in the ipad3

    Jim Level 5 person ....I am very happy for you that your usage will not be affected, please accept my  congratulations.
    Now I have to point out that going ballistic has certain connotations but posting on an internet forum is not one of them.
    I appear to be one of thousands who are all expressing their outrage in a rational and intelligent manner which cannot be said for your lebvel 4 + collegues on this forum.
    Finally there has been an ongoing issue wiith the iPad 3 Wifi on certain wifi only models , I have not encountered it and it seems clear neither have you. That of course does not discount the fact that many others have experienced this issue , an issue which may reveal itself to you or I in the future particularly as I have only been using mine for a fortnight.
    The following is a relevant link for your information :
    http://9to5mac.com/2012/04/04/apple-investigating-new-ipad-wifi-issues-tells-app lecare-to-replace-affected-units/

  • EVENT FIRST COMMAND AFTER SELECT

    Dear friends
    I'm now using Gemalto Developer's Suite and I want to test this event. However, I try different ways but fail to accomplish my test.
    Do you know any materials, or just anything about this event? I searched throughout various sources, materials but all I have now is a small piece of information in GSM 43.019
    Upon reception of the first command received by the GSM application after it has been selected or after the ATR if it is the default application, and before the Status >Word of the processed command has been sent back by the GSM application, the toolkit framework shall trigger all the toolkit applets registered to this event.
    If the first command received by the GSM application is a toolkit applet triggering command (e.g. TERMINAL PROFILE), the toolkit applets registered on the >EVENT_FIRST_COMMAND_AFTER_SELECT event shall be triggered first.
    The ProactiveHandler and the ProactiveResponseHandler shall not be available at the invocation of the processToolkit method of the toolkit applet on the >EVENT_FIRST_COMMAND_AFTER_SELECT event.From this material, I think it's quite vague to understand clearly this event.
    Thanks in advance,
    Jason
    Edited by: Jason Gosling on Oct 19, 2011 7:29 PM

    hi Jason.
    This is automatic event that was born by OS instead mobile.
    When OS received the first command "00 A4 04 00 00 0xXX + AID APPLET GSM" from User, OS will look in the ToolkitApplet Registry table and find the applet with EVENT FIRST COMMAND AFTER SELECT, then OS call method "process toolkit" of this applet.
    the called applet will do something that it want. Maybe send data to ME.
    When method done, OS continue action normally.
    This is for GSM applet on JavaCard. And the GSM applet is not default program.
    For the case: GSM is default, that mean OS automatic select GSM APPLET when it starts, no need to any command form ME or User, OS auto create this event and look toolkitapplet to run processToolkit method.
    hope this is fun !!

  • Why are 2 identical events created in iCal on my mac when I add event from mail ?

    why are 2 identical events created in iCal on my mac and not on my iPhone when I add event from mail created on a pc using OUTLOOK ?

    Nobody knows? Not even administrators?
    Please it would be really nice to have help on that to take all the benefit of the remote app.
    Thank you very much in advance.

Maybe you are looking for

  • Errorcode 80043aa3

    Hi, When I try to sync my calendar and tasks with outlook, I get the following errorcode: 80043aa3 I've installed the newest version of OVI-suite, but the errorcode still appears. Tried to reboot my system and reconnect my N97 mini several times, but

  • Virgin Mobile Broadband 2 Go

    As a recent Mac convert, I wanted to move my Virgin Broadband 2 Go USB 3G modem to my new MacBook, and after endless runarounds from Virgin and two weeks worth of emails, was finally told that the modem is not supported in Snow Leopard.  In theory, I

  • Screen exit and bapi

    how can we call a subscreen in screen exit. how can we do error handling in bapi?differenece between bapi and bdc. i will give the 10points to correct answers. kiran

  • I just lost my app store, facebook, safari

    Has anyone lost their notes app, safari, app store after updating to the OS 7 on their iphones?

  • I am having trouble using Home sharing on my NEW Apple TV from my windows itunes

    i having a tough time using home sharing on my New Apple TV and my windows computer iTunes i have the latest update of iTunes. And it is on both my computer and Apple tv