Parent TaskFlow doesnt get control back if child taskflow is closed in IE

Hi,
We have a bounded taskflow , which internally calls a child taskflow in a new window. The problem is if we close the child taskflow window before it renders completely it doesn't pass the control back to the parent taskflow. After that parent window is unusable and we have to close it start it again.
This issue is only seen in I.E (i am using 7.0) and chrome , it works fine in Firefox mozilla 3+
Any idea what can be the issue here???

Hi,
I suggest to you create a test case and file a Service Request with customer support
Frank

Similar Messages

  • How do i get control back?

    Computer was hacked and i have lost admin control.  Its a compaq pres cq62.  Any help appreciatied.

    If you believe your computer was hacked your best bet is to reinstall Windows.  At this point you don't know what the hacker has done to your computer.  So it is safest to just wipe it all and start over.  If you need to backup pictures, documents, etc. that is fine.  I would first remove the network connection from your machine.  That is the only way the hacker can get to your machine, so take that away!!!  Then proceed wiht your backup.  I would also ran a virus scan on the backed up files to make sure they aren't infected.
    I am employed by HP
    *** If my post helped you...click the KUDOS on the left to say THANKS! ***

  • Deleted Frame, never closed iMovie, nor finalized, but cannot get it back....

    Help!!
    My wife was editing a project on iMove '11, and deleted the last frame, which was a picture, rolling credits and music, along with a dozen or so other frames, beginning with this, the last frame, and working back towards the beginning.  She never closed the program, not finalized anything, but when doing control Z to undo each detetion, they all came back, with the excepion of the very first one deleted, which would have been the last frame of the imovie project.
    How can we get that back?
    We have not closed iMovie, not done anything overtly to finalize the project.
    Please advise as to how to recover the rest of the movie, or if there is some way to quit the whole thing, such that it will revert back to the unedited complete version.
    Thank you!!

    I realize that, however, that would not solve, nor explain the fault found with iMovie, and would require one to basically keep an external drive attached to my macbook pro 24/7, while doing continuous and instan time machine backups.  There are many easier ways to prepare oneself in advance of these issues happening, which would be much less cumbersome than the above, however, my post was not about this, but about the functionality, or lac thereof, of iMovie, in this situation, and my attempt to see if I was missing some other avenue to recover (or undo) these changes.
    Clearly, had I made a copy of the project, and then worked with the copy, this issue would not have been anything more thn a minor inconvenience, so it's really our "fault" for being in this situation.
    What troubles me more than our own foolishness is Apple's continued stance that their products, be it hardware or software, never fail, and never have issues or bugs.  And that whatever is found on the internet, no matter how prevelant, is BS, most likely a "conspiracy" by some nefarious folks looking to sully the good name of Apple, and even more amazng is that none of the sr. technical advisors have "never heard of this", so I guess Apple must filter out anything negative on the internet, nor let them view these very forums.
    As are seemingly most photo and movie professionals I work with in California, I am so fed up with Apple that I am looking at going back to PC based systems, and Microsoft based software, to process our workflow.  Apple has clearly thrown the professionals under the bus, at least in my opinion.
    If anyone else has anything to offer, other than to use a back up copy of the project, in order to allow us to recover the deleted frame, I would appreciate it.  In the intermin, we will simply have to recreate it.
    Thank you to all who take the time to read and attempt to help us.
    And good luck in all your Apple related endeavors.....I hope your such problems are few and far between!

  • Executing Child Taskflow Method from parent taskflow page

    Hi All,
    I have one issue with checking dirty data form Parent Taskflow button to check dirty data update in Child Taskflow page's view Object.
    JDev version: 11.1.1.3
    Scenario :
    Outer Container page has back button which need to check wherethere child taskflow has dirty data update or not. Child Taskflow transaction is always create new transaction and non-shared. But from ControllerContext, the root am service still associated with other viewobjects i.e. is loaded in others tabs in that outer container page, which is also checking dirty data from another tabs' viewobject dirty data checking (I need to avoid this issue that's why not working for me with controller context). I am thining to execute the child taskflow method from parent page on back button to check dirty data update for that tabs' page only. For it, how can we get access child taskflow method from parent page with static region taskflow. Is there any solution to implement like this? thank you so much.
    - Robin

    Hi,
    this should work:
    1. child task flow has input parameter "parentBean" defined.
    2. The child task flow has a managed bean "ChildBean" defined in pageFlowScope with a property "parentBean" with setter/getter.
    3. the parentBean input parameter references (in its value roperty) #{pageFlowScope.childBean.parentBean}
    4. The parent bean is configured on the parent view task flow (viewScope) and passed as a task flow binding input parameter. The parent bean has a boolean property "childFlowTransactionDirty"
    This allows the child bean to invoke the parent bean childFlowTransactionDirty to tell it that the transaction is dirty. On the parent view, you would just check the parentBean state for this property.
    Next is how you set the value on the parentBean from the childTaskFlow. One option is to use a RegionController on the PageDef file of ADF bound views in the child task flow.
    public class MyRegionController implements RegionController {
        public MyRegionController(){
        public boolean refreshRegion(RegionContext regionContext) {      
         int refreshFlag = regionContext.getRefreshFlag();
          //get access to the ChildBean and its parentBean property. Then call
          //ControllerContext .... to check the transaction state
          //update the childFlowTransactionDirty property
          ((DCBindingContainer)regionContext.getRegionBinding()).refresh(refreshFlag);
          return true;
        @Override
        public boolean validateRegion(RegionContext regionContext) {
            regionContext.getRegionBinding().validate();
            return false;
        public boolean isRegionViewable(RegionContext regionContext) {
            return regionContext.getRegionBinding().isViewable();
        @Override
        public String getName() {
            return this.getClass().toString();
    }Next: When users press the back button in the parent view, you call the ParentView bean childFlowTransactionDirty to check the child task flow transaction to be dirty or not
    Frank

  • Passing parameter value back from Child region [BTF] to Parent

    Hello,
    I am using Jdev 11.1.1.6. I have a use-case where I need to pass value back from child taskflow to parent.
    Let me elaborate the use-case:
    I have a main page which is implemented as BTF with fragment. This main page contains a child region [again a BTF with fragment].
    I am passing a parameter value from parent page to it's region using taskflow input parameter. Now value for one of the parameter changes inside child/region taskflow and I need to make this value available to main page taskflow.
    This parameter is just pageFlowScope variable, so basically not coming from any VO.
    I know that taskflow can return value via return parameter but I don't know if that is true for taskflow implemented as region in a page.
    Is it possible to communicate the pageFlowScope variable value from child region to it's parent page?
    Thanks,
    Jai

    Hi Frank,
    I tried to follow steps mentioned in your post but encountered error that "The scope of the referenced object #{viewScope.parentBeanName} is shorter than referring object childBeanName"
    Let me explain what I did:
    1. Created a bean parentBeanName in viewScope
    2. Created another bean childBeanName in pageFlowScope
    3. In ChildBean.java, created a private property parentBeanProperty for Class [ParentBean] and generated the accessors
    4. Created a input parameter in region TF as:
    <input-parameter-definition id="__28">
          <name id="__27">parentBeanParam</name>
          <value>#{pageFlowScope.childBeanName.parentBeanProperty}</value>
          <class>ParentBean</class>
          <required/>
    </input-parameter-definition> 5. Since my mainPage contains child page as region. I added parameter to mainPageDef to pass it to child TF, like this
    <parameter id="parentBeanParam" xmlns="http://xmlns.oracle.com/adfm/uimodel"
                       value="#{viewScope.parentBeanName}"/>6. Introduced a client method in childBeanName that is called from UI. There I am retrieving parentBeanParam instance from pageFlowScope and call setter method of my variable inside ParentBean.java
    7. Ran the page but encountered the error.
    Did I miss something somewhere?
    Initially I got error where #{viewScope.parentBeanName} returned NULL due to parentBeanName not instantiated. I created a variable in mainPageDef with it's default value pointing to #{viewScope.parentBeanName.variableName}, which I guess will instantiate the bean in viewScope.
    After this I got error of shorter scope. It never reached to code in Step 6 during execution cycle.
    FYI - My application is based on UIShell and essentially a one page application. Main page referred above is also a jsff based on BTF. I hope, this should not affect this implementation but I thought of at least mention it.
    Thanks,
    Jai
    Edited by: Jai Om on Dec 18, 2012 2:38 PM

  • I am able to see my ipod touch 5th geneneratio in find my iphone on icloud but it is showing offline.... i think its stolen but i have locked it with a passcode and the person who i suspect doesnt know it... i wana get it back what should i do??

    i am able to see my ipod touch 5th geneneration in find my iphone on icloud but it is showing offline.... i think its stolen but i have locked it with a passcode and the person who i suspect doesnt know it... i wana get it back what should i do??

    lost/stolen                                     
    No app on the iPod is required.                           
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected, on a computer browser go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up or conbtinue to show off-line.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    iCloud: Erase your device
    iCloud: Use Lost Mode
    - If not shown/shown off, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                               
    Reporting a lost or stolen Apple product                                              
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • I deleted my note by accident i do have notes on icloud. so i had half the note saved but the other half was very important and hard to right. i restored my ipod on i cloud back up but it still doesnt show i put so much time in that anyway to get it back?

    i deleted my note by accident i do have notes on icloud. so i had half the note saved but the other half was very important and hard to right. i restored my ipod on i cloud back up but it still doesnt show i put so much time in that anyway to get it back?

    How did you delete the Note? If you did a "select all" and "cut", open the Note and shake your iPhone to undo the cut action.

  • I have lost sound on my iPad in apps unless I use headphones ,does anyone know how to get sound back without them .I have used the mute volume on the bar at bottom of screen and the slider volume control there only shows when headphones are plugged in !

    I have lost sound on my iPad in apps unless I use headphones ,does anyone know how to get sound back without them .I have used the mute volume on the bar at bottom of screen and the slider volume control there only shows when headphones are plugged in !
    I also tried resetting settings all to no avail ...I looked up some advice and watched utube video advice on how to fix without success..
    The volume control button on side does not work ,I got the iPad last August and wonder if it is a fault that means I must return it for replacement from where it was purchased ?

    The Retrospect you used way back when is no longer around. The company was sold and that company produced a new version of Retrospect - Retrospect 8.x
    So, as you've been told, you would have to be running a Tiger system with an old version of Retrospect software (5.x or 6.x - you would need to know) assuming you can find the software.
    As best I can remember you cannot extract files from a Retrospect backup except using the software since Retrospect did not normally make a file by file backup rather it created an archive of the files in the backup. I'm assuming that the EMC/Retrospect people have told you that old Retrospect backups are not accessible by Retrospect 8.x?

  • HT5858 My iphone  4 has iOS 7, and the flashlight feature use to be in the control center however just recently I've noticed that it has disappeared, how do i get it back?

    My iphone 4 used to have the flashlight feature in the control center. It obviously has iOS 7 in fact iOS 7.0.4 and now there is no flashlight icon in the control center, how do I get it back?

    Thanks a lot!!! I honestly feel like that was the simplest thing ever and that I should've thought of atleast turning my phone off then back on again but again, thanks!!

  • I was in the middle of updating to 7.0.3 and Itunes stopped working. Now my phone is stuck in limbo (apple logo with status bar under) My power button doesnt work (of course) How do I get it back to normal?

    I was in the middle of updating to 7.0.3 and Itunes stopped working. Now my phone is stuck in limbo (apple logo with status bar under) My power button doesnt work (of course) How do I get it back to normal?

    I have same issue. I click on the home button and Wake/sleep at the same time for 30 seconds or more and then the phone entered in Recovery mode. It is erasing my content now and installing the update. Let´s see how this ends. I have iCloud, iTunes match, and backups from previos versions, hope I can restore all my content.
    Otherwise I´ll go to the Genius Bar to do a checkup.
    Good luck!
    It did not work the first time... The iPhone4 kept in limbo. Then I did disconnect as suggested above and tried again to enter in Recovery mode.  This second time it works. And after restoring the iPhone4 with 7.0.3, it asked me if I want to recover from backup. I did recover from my latest back up and now it is syncing the content.

  • Someone disabled my do not delete apps, and my child accidentally deleted my app store, how do I get it back?

    My child deleted my app store, can someone tell me how to get it back, please.

    It can't be deleted, it's one of the built-in apps. You've checked all your homescreen and app folders for it, and is it hidden by Settings > General > Installing Apps being set 'off' ?

  • HT204266 My child deleted the "app store" app.  How do I get it back or reinstall?

    My child deleted the "app store" app.  How do I get it back or reinstall?  Normally I would go into the app store to get the deleted app...

    You cannot delete the App Store app as it is one of the default apps. Your daughter most likely moved it onto another screen or accidentally moved it on top of another app which creates a folder that contains both apps.
    Swipe to the furthest left screen, the search screen, type in App Store, and you'll find where the App Store is hidden.

  • THE VOLUME CONTROL ICON DISAPPEARE​D. HOW DO I GET IT BACK?

    Volume control icon at the bottom of my screen has disappeared.  How do I get it back?

    Volume control icon at the bottom of my screen has disappeared.  How do I get it back?

  • My child somehow deleted my APP Store App - how do I get it back?

    My child somehow deleted my APP Store App - how do I get it back?

    It's a pre-installed app and therefore cannot be deleted so you may have inadvertently moved it onto a screen or into a folder.  Check all screens and folders and do a search in Spotlight, it will tell you if the app it still on your iPhone but unfortunately not where it is. If you find it on one or your screens or in a folder, press the icon until it wiggles and then drag it back to where you want it.  Alternatively you can reset your home screen in Settings>General>Reset>Reset Home Screen Layout. Also check Restrictions in Settings>General>Restrictions>Installing/Deleting Apps>ON

  • I once has the percentage of battery life on my iphone 4s but i restored it and now it doesnt have it, how do i get it back?

    i once has the percentage of battery life on my iphone 4s but i restored it and now it doesnt have it, how do i get it back?

    I'd check under settings/general/usage and see if battery % is on

Maybe you are looking for

  • Unable to set a new value in an extended property from within a For Each Loop

    Setting a new value in an extented property fails when the property is dereferenced within a For Each loop usin the item  iterator. However, if you use the First or Last Iterators from the Find Targets activity works fine. The error message is : "Set

  • Any way to set UNLIMITED workspace Quota?

    Hi all, Are there any method to set UNLIMITED workspace Quota for Content Services? The quota manager in CS API can update the existing quota but can the quota set as unlimited? Thanks, Tammy

  • Ascii art and system info in .bashrc.

    I was just curious.  I keep seeing shells around here such as the following: how would I accomplish this? http://img2.pict.com/4a/8c/76/e96624afb - 110227.png

  • Google car home cannot be installed

    Hello, I have updated my fascinate to Froyo about two days ago. I am trying to install "Google Car Home", but the android market does not allow me to install Google Car Home. (all other apps from android market are ok to be installed to my fascinate.

  • Pacman -Syu Fails -- Problem wth pm-utils Package

    I just tried to do a "pacman -Syu". I get the following errors: error:  Could not prepare transaction error: failed to commit transaction (conflicting files) pm-utils: /usr/bin/on_ac_power exists in filesystem errors occured, no packages were upgrade