Apex mixes applications working with two windows at the same time

Hi all, while developing in Apex I have found the following problem:
Working with two different applications at the same time, the browser goes from one to another indistinctly.
To reproduce the problem:
1. Open the same application builder in two different Firefox windows
2. Open a different application in each window (In my case: application 103 in window1 and application 105 in window2)
3. Go to shared components in both windows (window1 first)
- window1 breadcrumbs show: Home > Application Builder > Application 103 > Shared Components
- window2 breadcrumbs show: Home > Application Builder > Application 105 > Shared Components
4. Click in any shared component in window1 (Templates, Authentication Schemes...)
- window1 breadcrumbs show: Home > Application Builder > Application *105* > Shared Components > Templates (Application 105 instead of 103)
Is it a bug? I have read the known issues [[Here]|http://www.oracle.com/technetwork/developer-tools/apex/downloads/apex402knownissues-189793.html] but it does not appear.
Related Data:
Application Express version 4.0.2.00.07
Firefox 3.6.15
SO: Windows XP
The error is not reproduced with IE7. I have not tested any other browser.
Regards,
Molina

If you tried opening up two pages in the same application each of which modifies the same page items, you would notice the same issue.
This is because, in a session there is only one set of values for page items(or application items) and every parallel call to the same page would update the same bind variables.
Now the development environment or Apex Builder is also an apex application , and when try and open up the pages as you mentioned, they both access the same Application Builder page and sets/resets any existing values for those variables(and maybe cookies too if they are being used) , hence the 'mixing up'.
If that didn't convince you, check the URL of both the pages when you load them, they should show the same page number ( f?p=APP_ID:PAGE_NUMBER syntax). Imagine if the same approach was done with one of your application pages, say an edit form opened from a report with multiple records in multiple tabs like what happened with this case: {message:id=9346663}
So this really isn't a bug in a way, because that is how session states in apex is/was maintained. Ofcourse if they used another kind of development platform for building pages, it may have been avoided, but thats an altogether different point in itself.

Similar Messages

  • How can I work with two images at the same time?

    I have downloaded Photoshop Elements 10 and I can not find the buttons for Minimize or Reset for the image. If I rightclick the miniature those options are grey. If I open two images so I have two miniatures in the holder and then go to Windows and Images the option Show Overlapping is grey but I can show Side by side. Then I can only shut down the images.
    Thanks for help
    Bibbi

      Open the Editor and on the menu bar click:
    Edit à Preferences à General
    Check the box “Allow Floating documents in Full Edit Mode” and click OK.
     

  • Working with mutiple windows at the same time

    I'm using a rtm which selects various vi's, I want each of the vi's to up-date with data all the time as they are selected. The problem is that, as each one is selected the others stop receiving data. I have to highlight each one again I have tried to use Globals but this isn't working to well. Any idea's with examples would be handy

    If you call the VIs statically in the same loop when they are selected then data flow will prevent anything from happening until the one already running has stopped.
    If you want them to run in parallell you'll have to call them so that they do not stop the data flow from calling the others...that means calling them in separate loops or dynamically using an invoke node with the wait until finished flag set to false.
    MTO

  • Using a Dell 2407WFP with two Macs at the same time?

    Hi ... I have a Dell Ultrasharp 24" WFP display that I was using with my old G4. Connectivity isn't the issue ... it works beautifully on both the G4 and my new Mini. I've read that I can put the VGA cable on the G4 (no biggie -- it's what I was using before) and I have the DVI on the Mini.
    What I want to know is: Can I (and is it wise to) have both machines running at the same time and toggle the display between the two or should I keep one machine off when the other is on? There is a button on the display for toggling between a variety of displays.
    I've activated file sharing, etc. on the old box, but there are some things I still can't do unless I'm on the G4 desktop -- mostly my graphic apps. I've been holding off from swapping cables around, but now it's getting to the point that I need to get back on the G4 because of apps that I don't have on the Mini.
    I haven't put the VGA cable back on the G4 yet. It seems like it -should- work -- I just need some verification that it will or won't futz up something. I think what I might be most concerned about is that the monitor isn't powerful enough to run both machines at the same time, but I could be wrong.
    The info at the Dell site is somewhat dated.
    TIA!

    I use a KVM switch with a Dell monitor that has DVI and VGA inputs. I only route the K an M portions (keyboard and mouse) through the switch. The computers connect directly via VGA and DVI to the Monitor, and then I use the monitor's switch to make the video switch. Works fine. Don't worry about taxing the monitor.
    I'd suggest buying the KVM switch from a vendor with easy return policies, since it can take a few tries to find a model you like.

  • Can I use one GBIP-Interface with two programs at the same time?

    Hi, I have one PCI-GBIP-controller with multiple instruments installed. Now I want to use these instruments with two differents programs at the same time.
    E.g.: program 1 uses GPIB0::1 and GPIB0::3
    and program 2 uses GPIB0::4 and GPIB0::7
    Is this possible??
    When I have tried to do this, I always got timeout errors..
    Thanx in advance.
    Philipp

    Hi,
    You shouldn't have any problems accessing different devices from different programs using the same interface. I even used the two VIs to communicate with the same device. Although not the best approach, VISA didn't return any errors.
    DiegoF.

  • [CS3 JS] Working with two documents of the same name

    I work with sets of documents that use standardized names. I'm trying to write a script that compares two documents from different sets. Because the source and the target documents both have the same name, I've encountered some disturbing behavior that reminds me of the app.activeWindow bug that Dave has written about. (
    Dave Saunders, "Scripting FAQ as Wiki" #14, 15 Oct 2007 12:19 pm)
    To perform the comparison, I have to grab a reference to the same region of text in both documents, as offset from regular landmarks. I was just patting myself on the back for figuring out the "story.characters.itemByRange(begin, end).texts[0]" acrobatics required, when I discovered that my text objects were magically "dissolving" into invalid objects.
    After a lot of debugging and attempts to hack around the problem (i.e. storing the text begin/end indices and not grabbing the text object until the last possible moment), I've narrowed it down to the references to the source and target documents. I've watched the reference variable to the source document *change* to instead reference the target document when I start accessing the target document object. Once this happens, any text objects belonging to the source document become invalid, as if the source document had been closed.
    Is there any way around this? I've thought about temporarily saving the files to different names, but I haven't tried it yet.
    Here's a script that demonstrates the problem (you'll have to find your own same-named documents if you want to run it):
    var source = "/Users/deyk/Desktop/test/source";
    var target = "/Users/deyk/Desktop/test/target";
    function findChapters(in_doc) {
    app.findGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.appliedCharacterStyle = "chapter-num";
    app.findGrepPreferences.findWhat = "\\d+";
    return in_doc.findGrep();
    var sdoc = app.open(File(source+"/01.Genesis.indd"));
    var s_file_start = sdoc.fullName;
    var s_chs = findChapters(sdoc);
    var s_story = s_chs[0].parentStory;
    var s_txt = s_story.characters.itemByRange(s_chs[0].index,
    s_chs[1].index-1).texts[0];
    var tdoc = app.open(File(target+"/01.Genesis.indd"));
    // At this point, sdoc now references tdoc instead.
    // s_txt, s_story, and s_chs become invalid objects.
    var t_file_start = tdoc.fullName;
    var t_chs = findChapters(tdoc);
    var t_story = t_chs[0].parentStory;
    var t_txt = t_story.characters.itemByRange(t_chs[0].index,
    t_chs[1].index-1).texts[0];
    var s_file_end = sdoc.fullName;
    if (s_file_end.name != s_file_start.name) {
    var result = "What a nasty bug!";
    "Finished";

    I've tried saving the document to a temporary name, and it works satisfactorily:
    function openFileAsTemp(a_file) {
    var tmp_folder = Folder.temp.fullName;
    var date = new Date();
    var temp_file = File(tmp_folder+'/'+date.valueOf()+'_'+a_file.name);
    var doc = app.open(a_file);
    doc = doc.save(temp_file);
    return doc;

  • Need to Open Two Windows at the same time

    Hi All ,
    I have a requirement wherein I am opening a new page when the user presses a link . The information displayed to the user in the new page is Read-Only.To display the reqd info on the new page I pass some parameters encoded in the page call URL.
    Besides , displaying the info in the new page , it is imperative that i allow the user to continue performing some transactions in the current page (calling page).
    However , i am not able to achieve the same . If I use 'retainAM=Y' in the URL then i pass the Session Control from the calling page to the called page . So that option is out.
    Can u suggest something wherein i am able to pop-up a new page to the user , but still not loose the session control from the current page.
    It is necessary that the user has both windows open to perform the transactions.
    Thanks
    Chirag

    Senthil
    I need to clarify some things . I cannot create an OA Function as you have earlier advised . Lets say its a constraint i have. My scenario is that i have to prepare a HyperLink Declaratively . In that i am currently giving _Blank as the target .
    Now i want to open the new page and still allow the user to perform some transactions in the original page while the new page is still open . How should i go abt maintaining my AM from original page.
    Following are the scenarios i have already tried out.
    1) I have opened the the new page and released my application module in that page . This didnt work .
    2) I have tried doing retainAM=N . This also does not work.
    3) Using PopUp is not an option since i cant create OAFunction .
    Are their any other way . When i open a new window thru a current window , my AM gets transferred to the new window . Hence i am not able to perform any transactions on that the original page . How can u release the AM On click of a link ?
    Pls Suggest
    Thanks
    Chirag

  • Running iTunes in two windows at the same time

    How can I simultaneously view two windows with different playlist on each one? I remember, that was possible in the previous version of iTunes.

    Haldir4,
    Unfortunatley, that ability was removed in iTunes 11.
    If you have suggestions for Apple, you can use the iTunes Feedback page.

  • Using mainstage with two instruments at the same time

    Hi, I'm using an M-Audio firewire solo as an interface with my macbook.  I have a usb keyboard and want to play guitar as well, switching between the two onstage.  My question is, how do I get the outputs to the soundboard so they can be mixed separately?  The interface has two inputs and balanced outputs (ch1 and ch2).  I want channel 1 (gtr) to go to ch1 of the output and channel 2 (keys) to go to ch2 of the output so they can be mixed to the front of house and monitor mixes.  Is this even possible using mainstage or logic, or even by just using the headphone out on the macbook?

    Since MainStage only deals with outputs in stereo.  You'll need to do some panning.  Pan your Guitar fully LEFT, and your keys fully RIGHT.  That'll give you two separate outputs.... 
    FYI, there are some issues with panning in MainStage 2.  So, to get around this....  Create two Sub Aux channels.  One called Guitar Out, and the other Keys Out.  Do your panning there and not on the individual channels.  And send channel one to the Guitar Out Aux, and the Keys to Keys Out Aux.

  • Working on two imovies at the same time

    I was working on an imovie, then I chose new project and started a new imovie. I would like to go back to work on the first one and I can't find it. Can anyone help.

    Click on the Project Library button at the top left.

  • Two images at the same time

    Hi!
    I'm new into FCE and I would like to ask for some help. Can I work with two images at the same time? I mean, Can I superimpose two images to make one? How can I do it?
    Maybe this is something easy, but I'm just starting,
    thanks in advance for your answers
    Message was edited by: angelcotallo

    Yes, you can. You can put one clip on top of the other in the timeline. You can make both clips visible by reducing the opposite of the clip or top, or by scaling back the clips so they are smaller. You can reduce the opacity and scale of the clips in the viewer by opening the clips from the timeline into the viewer. You can also scale the images directly in the canvas when it is in Image+Wireframe mode.

  • How do i open 2 garageband windows at the same time?

    is there like a third party saoftware or ANY WAY I CAN OPEN TWO WINDOWS AT THE SAME TIME!!!! AHHHHHH
    i wana transefer tracks over to another file, but i cant couse i can only have 1 windows open at a time

    mackyytg wrote:
    ANY WAY I CAN OPEN TWO WINDOWS AT THE SAME TIME!!!!
    NO!!!!!!
    i wana transefer tracks over to another file, but i cant couse i can only have 1 windows open at a time
    you don't need two windows to do so, read the tute on rescuing files to see how to copy tracks:
    http://www.bulletsandbones.com/GB/Tutorials.html#allaboutrescuinggaragebandfiles

  • I purchased Adobe photoshop elements II and Adobe premiere elements II. They are both on one disc. My computer crasded and I had to reload Windows. I only have one serial number and it only works with photoshop II. The same serial number will not work for

    I purchased Adobe photoshop elements II and Adobe premiere elements II. They are both on one disc. My computer crasded and I had to reload Windows. I only have one serial number and it only works with photoshop II. The same serial number will not work for Premiere. I dont have any other serial numbers. What do I do???

    Static_Unit
    I am getting a bit concerned about what is happening in your situation. Yesterday you posted your question in at least two different forums, one of them being here in the Premiere Elements Forum.
    Don't Have Serial Number for Premiere, Only Photoshop?
    Wherever you posted, the reply was to contact Adobe via its Adobe Chat. It is the only one who can sort out this matter for you.
    In the thread cited above I offered to help you with the difficulties that you were having visualizing the Adobe Chat in its web page. I was waiting for your follow up on that in the above thread. Instead, I find your same question in a new Adobe Premiere Elements Forum thread this afternoon with no refer the prior threads or prior recommendations given you.
    I will also mention again...when you buy the Photoshop Elements and Premiere Elements bundled in one packaging and with installation files for each on the same installation disc, each program has its own serial number. The Photoshop Elements serial number does not work for Premiere Elements and vice versa. The serial numbers are on labels on a box which houses the installation disc envelope(s). So, if you purchased both programs and found the Photoshop Elements serial number, then the Premiere Elements serial number should be in a label right underneath the label with the serial number for Photoshop Elements. I recall writing this in your yesterday's thread on this matter.
    The moderator will no doubt be along shortly to close or delete this thread. So, just in case, please bookmark your yesterday's thread cited above so that we can continue this communication which is trying to help you.
    Thanks.
    ATR

  • How to share iphoto with two users in the same imac maverick

    I can´t find the way to share iphoto/itunes with two users in the same imac with maverick software

    In conclusion, the new software is worse than the old one, really?  Because in my old mac I could share easily without copy with an external USB
    It's not iPhoto that dropped the ball but the system.  I believe it was Mavericks that broke the Shared folder compatibility for iPhoto, not iPhoto itself.
    Also having the library on an external HD is a good way of freeing up space on the boot drive to assure optional system and application performance.

  • HT3819 Can you home share with two libraries on the same computer?

    Can home share be used with two libraries on the same computer?

    iTunes must be running for home sharing to work.  There is no way to have home sharing running simultaniously for two users on the same computer.
    Simply add the media files using File > Add File/Folder option in iTunes.

Maybe you are looking for

  • How do I configure rediffmail account to my iPad 2?

    I have purchased an iPad 2 recently and want to configure my rediffmail account on it, have tried putting pop details but could not configure the same, any assistance?

  • PS CC 2014 stürzt nach dem Start ab - Problem erst seit dem Update

    Seit ich gestern das Update über die Cloud gemacht habe, stürzt PS sofort nach dem Start ab. Treiber aktuell, Grafikkarte ATI FirePro V5800. Zuvor lief PS einwandfrei. Windows 7 professional, 22 GB RAM, wurde am Wochenende neu aufgesetzt, wie gesagt

  • Report Writer/Painter Function Module

    Hi all: Is there any way (function module, class method, etc) to obtain the information generated in the FI-CO Report Writer/Painter? Best Regards

  • Execute RFC Command in waiting after CR release - JCAPS 5.1.2

    Hi to All, our integration landscape is composed by Siebel CRM - Jcaps 5.1.2 - Sap Ecc 6. We have implemented in JCAPS three layer: one for Siebel Interaction, one for Business Rules and another one for Sap Interaction. In Sap Layer we call RFC Funct

  • BOM Component Query for MRP during BOM explsion

    Hi all, Bom what I am talking is Revese Logistics BOM(Repair BOM).Here something called attach rate we are using.That means if phone comes for repair then what is the possibility that the particular component will be used.It is usually in decimal pla