Losing of amImpl after a popup

Dear All,
I have created a AMImpl calling a stored procedure inside and bind that data control to a page fragment.
Then I use the following to get the AMImpl in the backing bean and run the stored procedure:
ViewObject vo = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry().findIteratorBinding("MyVO1Iterator");
AMImpl amImpl = (AMImpl) vo.getApplicationModule();
amImpl.storeProcedure1();
It will write the data to say table1 and I could use
amImpl.selectData();
to query these uncommitted data in table1
Then I have a popup showing these uncommitted data asking user for confirm and when the user click the 'confirm' button in the popup, I call the same function to get the amImpl:
ViewObject vo = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry().findIteratorBinding("MyVO1Iterator");
AMImpl amImpl = (AMImpl) vo.getApplicationModule();
but the amImpl.selectData(); has no records anymore. So my questions:
1. is it able to get back the amImpl with the uncommitted data to continue my confirm flow?
2. what is the state of that 'gone' amImpl? will it causing memory leak?
3. is it because of the popup that make that amImpl 'gone'? It is able to have popup with amImpl not going away?
Thanks for any hints.
Andrew
Jdev: 11.1.2.1.0

Dear Arun,
Thanks for the reply. I've tried creating client interfaces but not quite understand how to use it in the code, especially when there are quite a number of parameters.
(I only know how to use it in the executable in the bindings). Can you help to give me some examples? Thanks a lot.
Andrew

Similar Messages

  • Hi. I just got the iPhone 6, plugged into itunes and made the mistake of putting an OLD back up on my new phone resulting in losing all contacts after 2013. They are not saved on the cloud. Is there any way to go back to before I screwed up?

    Hi. I just got the iPhone 6, plugged into itunes and made the mistake of putting an OLD back up on my new phone resulting in losing all contacts after 2013. They are not saved on the cloud. Is there any way to go back to before I screwed up?

    If you have performed a sync with the device since you restored this old backup, then don't bother looking for another backup. iTunes writes over the last backup each time you sync. If you were handling contacts in iCloud, you would find them by logging into iCloud. Or you can check settings and iCloud and see if the button it on for Contacts. Otherwise it might have been on the computer, if you had a program that syncs with iTunes and handles contacts, depending on the computer system you use. If Windows, it would be Windows Contacts or Outlook. If a Mac, there is a Mac Address book as well.

  • Losing 3G connectivity after upgrading to IOS 8.0.2

    my iPad is now losing connectivity frequently after the upgrade and I get a "no service" and have to restart my ipad for the 3G to reconnect. I don't know how many times had to do this since the upgrade, it's really annoying as the restart takes a while to load.
    anyone having this problem? What is Apple doing about this?

    Hello 712biggar,
    Sorry to hear that you are consistently losing your cellular connection. Lets see if we can get it working. I know that you have tried restarting your Ipad, but have you also tried the additional steps in the article below. Check them out and let me know if it helps or not. 
    Get help with the cellular data connection on your iPad (Wi-Fi + Cellular Model)
    http://support.apple.com/kb/TS4249
    Regards,
    -Norm G. 

  • Losing disk space after installing Mavericks

    After installing OS X Mavericks, I had noticed my computer was losing disk space after updating some products. I even shut down my computer to allow it to readjust to the updates, cleared some unnecessary apps, and yet I see my computer losing more space, as if files are being added behind the scenes. I've adjusted my browser Safari to more private settings,even cleared the cache, to avoid this, yet it still occurs. Are there other files I should be clearing?

    the trouble is I don't know what is causing the disk space to be taken. I'm idly using Safari with private browsing set, when I come looking at my finder, seeing the space gradually falling. I was at 695.02 GB available this morning, and now at 694.83 GB available. I've made no downloads in between then, so I'm wondering if this is the result of downloading Mavericks directly from the app store, or if there is a setting I need to fix. I've tried verrifying/repairing the disk, permissions too, but I still see the decrease occurring.

  • Have you experience a problem about losing your internet after downloading itunes? How to fix it?

    Have you experience a problem about losing your internet after downloading itunes? How to fix it?

    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so.
    Try the following to rule out a software problem
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store. Seems you have a bad headphone jack.
    Apple Retail Store - Genius Bar
    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price
    A third-party place like the following will replace the jack for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the jack yourself

  • How to display a specific tab in a screen after a popup message

    Hi all,
            I've a rewuirement where in i need to display a secific tab in a screen after popping up a warning message. To be specific, when i choose 'Yes' in the popup window, it shoud take me to a tab which is not active while displaying the warning popup.
    Thanks in advance....
    Anil Kumar Japa

    Hi
    U need to active the tab you want to show:
    So you should set the ok_code (of the tab) value to field ACTIVETAB
    <TABSTRIP>-activetab = <OK_CODE>.
    And transfer the value of subscreen number to the subscreen area:
    CALL SUBSCREEN SUBSCREEN1
                 INCLUDING G_CTRL_TABSTRIP-PROG             
                           G_CTRL_TABSTRIP-SUBSCREEN.
    Max

  • Error after close popup with swfloader

    Hi all, hope some one could help me with this i get this
    error ( Error: Unable to load '' ) each time after i close a popup
    with a swfloader the error popsup when i click on the datagrid
    *****************************main mxml
    private function ShowPano():void
    var SWFLoaderInstance:Panoramica2 =
    Panoramica2(PopUpManager.createPopUp(this,Panoramica2,true));//
    instantiate and show the title window
    PopUpManager.centerPopUp(SWFLoaderInstance);
    SWFLoaderInstance.mainAppPano = this //Reference to the main
    app
    scope
    *******************************this is the mxml Panoramica2
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="doInt()"
    cornerRadius="10" width="600" height="450">
    <mx:Script><![CDATA[
    import mx.controls.PopUpMenuButton;
    import mx.managers.PopUpManager;
    import mx.collections.ArrayCollection;
    import mx.controls.Button;
    [Bindable]public var mainAppPano:Object = null;
    //called by the close event raised byclicking the close
    button
    private function closeWindow():void
    PopUpManager.removePopUp(this);
    }//closeWindow
    private function doInt():void
    PopUpManager.centerPopUp(this);
    ]]>
    </mx:Script>
    <mx:TitleWindow layout="absolute" right="10" left="10"
    showCloseButton="true"
    close="closeWindow()" top="10" bottom="10">
    <mx:SWFLoader
    source="{mainAppPano.datagrid.selectedItem.pano..src}"
    scaleContent="false"
    horizontalCenter="0" verticalCenter="0"/>
    </mx:TitleWindow>
    </mx:Canvas>
    ********************************xml structure
    <catalog>
    <libro>
    <name><![CDATA[<b>Biblioteca Central
    </b> ]]></name>
    <desc><![CDATA[Se inauguró el 20 de noviembre
    de 1978 ]]></desc>
    <imagen>FOTOS/est/Biblioteca Central Manuel Bartlett
    Bautista.jpeg</
    imagen>
    <pano nombrePano="Biblioteca Central Bautista">
    <src>FOTOS/Panoramicas/PanoZoom642007.swf</src>
    </pano>
    <ico>BOTONES/gifs/video.gif</ico>
    <video nombreVid="Biblioteca Manuel Bartlet">
    <src>VIDEOS/Biblioteca Manuel Bartlet.flv</src>
    </video>
    <audio/>
    <pie>Biblioteca Central Manuel Bartlett
    Bautista</pie>
    </libro>
    </catalog>

    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    var test = $x('P7_FLAG').value;
    if(test == '1')
    window.close();
    window.opener.doSubmit('REFRESH');
    </script>javascript does not wait for the current action to complete and then perform the next line.
    means in your function call
    doSubmit('SUBMIT');is triggered and it carry on's to next line that is
    $x('P7_FLAG').value;this will not be set because you are setting the value of P7_FLAG to 1 in plsql and trying to check in javascript, which will not work.
    what you need to do is amend your js function like below
    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    </script>create a page branch to procedure and make it conditional to when P7_FLAG = 1
    and set the branch source to below
    htp.p('window.close();');
    htp.p('window.opener.doSubmit(''REFRESH'');');

  • Losing disk space after upgrade of Mavericks

    The download and installation was successful. However, after restarting and before upgrading all free iWork apps including iTunes and iPhoto. I noticed that after recovering about 10gb of disk space, it started reducing it again.  I continued with the upgrade of the said apps, but after leaving my mbp for a few hours it started losing disk space again. this time its agresssive, i've lost around 40gb overnight, without using any apps or activating any updates.  Please help!

    It sounds like Time Machine is turned ON and the computer is making backups to the hard disk.  This space is freed automatically, if required by the OS.

  • Settings reset after shutdown + popup

    I don't usually shutdown my 2014 Macbook Air except the occasional freeze but recently decided to do so while I wiped the keyboard clean. Once I turned it back on and signed in, I found all my preferences reset including trackpad set to 'tap to click', dock icons reset to original, etc. It seems like everything was reset to factory settings.
    I tried going to Preferences to change the trackpad to 'tap to click' but discovered that it was already set do so...yet I'm unable to 'tap to click'.
    The other problem is I get this annoying popup which I've never seen before titled "OSX needs to repair your library to run applications". Even after entering the correct password, the popup reappears. Then I tried just hitting cancel repeatedly until it disappeared. That's when a different popup appeared--something titled "mail chain...enter your password"--can't remember exactly.
    This was all occurring on one of my user accounts so I tried switching back to the original Admin account and found the same issues occurring there (the account also reverted back to factory settings).
    Any ideas? Your help is much appreciated.

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    resetp
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • Error when clicking other button after displaying Popup window

    Hi,
    I'm developing a custom page which calls a popup window in r12, below is the error encountered.
    Error: Cannot Display Page
    You cannot complete this task because you accessed this page using the browser's navigation buttons (the browser Back button, for example).
    To proceed, please select the Home link at the top of the application page to return to the main menu. Then, access this page again using the application's navigation controls (menu, links, and so on) instead of using the browser's navigation controls like Back and Forward.
    On my base page, I have other buttons like Save, Back, and the button to invoke the popup window. I can display the popup window without error, but when i clicked on the base page's other buttons after invoking the popup window, the error above is shown. I'm not clicking any browser's navigation buttons. Please let me know how to solve this error.
    Thanks!

    Hi,
    Just want to update...
    The error occurred because I have isBackNavigationFired checking, this becomes true when clicking the other buttons in the base page after displaying the popup. Is there a workaround where I can make this work without removing my back browser navigation checking?
    Thanks!

  • IOS 7 - iPad losing proxy password after reboot?

    Hi,
    After the release of iOS 7, when an  iPad is rebooted or runs out of charge etc... The iPad will lose the proxy password?
    It seems to remember the username and proxy address/port.
    Apple can you fix this ASAP...
    Hundreds of iPad's are in use with Education now requiring a Proxy server/Password etc... and it losing it's settings everytime is NOT acceptable.

    For what it is worth, I have seen the exact same thing.  This is clearly a severe Apple bug.
    have filed an Apple Bug Report, and you should do the same to make sure they fix this: http://bugreport.apple.com

  • Losing defined patterns after non-Adobe software updates

    Thanks for taking the time to try to help me. I am running CS2/Windows XP.
    I keep losing my defined patterns after software updates, but our MIS team hasn't made any changes to my Adobe software (obviously ).
    I don't lose all of them; it appears that the patterns that I made 2 years or more ago are safe.
    I am wondering if someone can tell me where PS stores the files when I define my patterns so that I can have MIS protect that file during future updates. I am tired of wasting time re-doing them!
    Thanks for your time!
    Amy

    Sounds like they may be wiping our part of your user preferences directory by mistake, and you get reset to the defaults.
    Until you save you presets, they are stored in Photoshop's preferences directory.
    After you save them - they're whereever you saved the file.

  • I am losing my emails after 2 weeks

    I am losing all my emails on my IMAP server after two weeks. In my settings under Synchronize and Storage I have ticked the box do not delete emails but I am still losing them can anyone help me with this problem.

    what retention policy does your mail provider have? So auto age mail and delete it based on age. As IMAP is synchronized it is possible to the server or another device like a phone to delete the mail and have that also occur in Thunderbird, regardless of local settings

  • Ipad3 losing  wifi connection after IOS 7.1 DL.  FIX??  I have reset, rebooted, etc.  This is unacceptable.

    my ipad 3 is losing wifi or not letting streaming content happen after DL of IOS 7.1.  WIll not connect to the internet either.  Fix?? I have rebooted everything. HELP! now i have a $600 brick.

    it sounds from your description like you have not made peace with your router.  suggest you reboot the router and the pad (as you have probably already done).  In settings, wifi - "forget" the network, the rejoin.  You will need to re input your password.
    In one case, I needed to actually change the password in the router, then rejoin - that seemed to wake it up.
    To test what is happening, go somewhere that has a public wifi - like a starbucks or Macdonalds - Make sure your wifi works there.  

  • Some apps losing data shortly after restore (but not immediately)?

    I recently got my iPad replaced after a hardware failure. I restored the new iPad, which forced an upgrade to iOS 5.0.1. After restoring apps, I restored app settings from a backup. When opening apps, it seemed that the restore had restored game progress etc. However, some (but not all) apps are then losing data: After switching to another app, or closing the app, and then opening the app again, the app has been reset to its starting state, with all game progress lost.
    Can anyone suggest what to do?

    Turns out that the restore had created two accounts at the app developer's game server. After removing the new account, it has worked nicely since.

Maybe you are looking for

  • BAPI_GOODSMVT_CREATE with a movement type of 262

    hi: when  I do a goods movement using BAPI_GOODSMVT_CREATE with a movement type of 262. If I supply the reservation number it creates the material document with a movement type of 261 ignoring the 262 . why ?

  • Exports hangs in stored procedures

    hi i am running oracle 8.1.7 on solaris 8 when i am doing the export the export goes fine but when its reaching exporting stored procedures last after the integrity constraints the export is hanging and giving error last terminated with unsuccessfull

  • Contacts synching only contacts I make recent changes

    Hi, I have a Microsoft exchange online account. When in Contacts I disable it I do have in All Contacts just two names, they are OS users I guess. If I enable the exchange account in Contacts for sync, I do have in All contacts, almost all my contact

  • Widgets and RSS

    1) I am looking for a widget for my site that will allow me to upload my own .mp3's (probably to some site) and put them in a playlist on my site for faster loading and a neater look. Any thoughts on this matter? Any suggestions? (I tried esnip.com a

  • How to reach my back up

    Recently my macbook pro is stolen, and I did my back up at last one year ago, but now I cant open it from another computer. It says, NO MOUNTABLE FILE SYSTEMS. I think there is a problem with my time capsule hard disk. It looks a space is still using