One scrollbar to rule them all?

Hi there,
I'm working on a flex app, and it has several nested components.
When those components don't fit vertically they tend to create their own scrollbar, and at some points my app gets filled of scrollbars, whics is reaaally annoying.
Instead of this, I would like to have ONLY ONE vertical scrollbar, on the <mx:Application> so that when it's necessary, the <mx:Application> will make it appear and it will be the sum of all components' heights.
Is there any way to achieve this? I heard the Box component tries to resize itself and propagates the new sizes to it's parents, but this hasn't been the case.
Here's an example of the nesting:
<mx:Application>
     <mx:HBox height="100%" width="100%">
          <mx:ViewStack width="80%" height="100%">
               <mx:HBox height="100%" width="100%">
                    <mx:List/>
                    <mx:Panel height="100%">
                              <mx:HBox>
                                   <mx:DataGrid>
                                   <mx:HBox>
                                        <LineChart>
                                        <Legend>
                                   </mx:HBox>
                              </mx:HBox>
                    </mx:Panel>
               </mx:HBox>
          </mx:ViewStack>
          <mx:Panel width="20%" height="100%"/>
      </mx:HBox>
</mx:Application> 
Any help will be appreciated. Thanks. Bye.

If you want to make u component change their heights according to change in outer container make heights in % else if outer container is of FIXED height mention height in pixels to avoid scrolls but u have to keep eye on total height of childs shouldnt exceed parent's height.
so keep H & V scroll policies OFF for childs.

Similar Messages

  • One Key to Rule them all - gpg

    Hi,
    Right now i have multiple gpg keys, one for each identity i assume.
    Its kinda annoying having to manage them all, but at least i have some control
    of what i share with other.
    Anyways, i just thought of an alternative,
    Is it possible to have one key with multiple ids (ids taking the place of seperate keys) and then only share a certain
    subset of those ids with other people?
    For example, i could have one key with 2 ids, and when i send it to a keyserver, i only
    send it with one of those ids.
    Is that a better way to manage things?
    More/less secure?
    Thanks

    If any other id ever "leaks" to the keyservers, it will be stored in public forever.

  • One menu to rule them all

    Hello,
    I am working on new training series. I have been able to
    capture a total of 8 projects. When we publish them they are fine.
    My issue is the following.
    I would like to make an interface screen that would auto
    launch so that the user would have a choice of what demonstration
    they would like to see. Ultimately we would like the final project
    to be an exe
    So far I have tried to create buttons that point to animation
    (swf) slides. We would like this demo to be standalone and not link
    based.
    The issue with this is that the end user cannot use the main
    “progress” bar at the bottom of the screen (I have to
    include a progress bar in the animation, so it looks like there are
    2 progress bars at the bottom of the screen. If I do not include
    the progress bar there is no way to fast forward the animation).
    Also if I go back to the main (first slide) slide and chose another
    demonstration the audio from the first on is still playing and over
    laps.
    The next thing I tried was importing all the projects into
    one “supper” projects.
    The issues with this is that now I can access the progress
    bar but now I can skip from one demo to another (I would like
    create a break in between. The user should only see one demo at a
    time)
    I know I could create link to exes but I would like to avoid
    IE (internet Explorer) or any other browser.
    Does anyone know how to make a selection screen where the
    user would select a demo to view and only that demo would be shown
    in the time “progress” bar at the bottom of the screen?
    And that at the end of the demo would go back to the main title
    screen.
    We love the program so far but we really are hoping that this
    can be done.
    Thanks
    Michael

    Hi Michael
    I would like to make an interface screen that would auto launch
    so that the user would have a choice of what demonstration they
    would like to see. Ultimately we would like the final project to be
    an exe
    Have you explored the companion MenuBuilder application for
    this?
    So far I have tried to create buttons that point to animation
    (swf) slides. We would like this demo to be standalone and not link
    based.
    Not sure I follow you there. Anything that offers an ability
    to click to launch a movie will be link based.
    The issue with this is that the end user cannot use the main
    “progress” bar at the bottom of the screen (I have to
    include a progress bar in the animation, so it looks like there are
    2 progress bars at the bottom of the screen. If I do not include
    the progress bar there is no way to fast forward the animation).
    Also if I go back to the main (first slide) slide and chose another
    demonstration the audio from the first on is still playing and over
    laps.
    Sounds as if you are trying to accomplish this all in one
    single .SWF? Perhaps by importing different movies on different
    slides of a master movie?
    The next thing I tried was importing all the projects into one
    “supper” projects.
    The issues with this is that now I can access the progress
    bar but now I can skip from one demo to another (I would like
    create a break in between. The user should only see one demo at a
    time)
    Again, perhaps MenuBuilder could help here. Either that, or
    perhaps Jesse Warden's Captivate Player?
    Click
    here for Captivate Player. Fellow Adobe Community Expert Paul
    Dewhurst also offers up assorted players.
    Click
    here
    I know I could create link to exes but I would like to avoid IE
    (internet Explorer) or any other browser.
    Again I'm confused. EXE files are normally presented in their
    own player and not inside a browser.
    Cheers... Rick

  • On the Air w/ Scale Computing: One Appliance to Rule Them All!

    Appliances are everywhere in IT these days (and no, we don’t mean your toaster). From virtualization to networking to backup, all-in-one solutions make things easier to save money and get started faster, but is everything really as good as advertised? And when does a DIY solution still make more sense?
    In this edition of “On the Air” we look at the pros and cons of appliances vs. traditional servers, and we’ll talk with real IT pros and Scale to find out the inside scoop of purchasing, installing, and managing server appliances.
    One does not simply want to miss out on this show!
    This topic first appeared in the Spiceworks Community

    @Henweigh99,
    I can't quite put my finger on why, but I get a little bit of "code smell" from this approach.  Maybe it's because using a global join table for all relationships is counter to every app and example I've ever seen.  I'm also wondering if some many-to-many relationships might be made more confusing (which is the parent and which is the child might not be clear cut), and keeping consistent throughout your application might be a challenge.
    I can see wanting to remove some of the "noise" of all the individual join tables typically found in databases.  Personally, however, I prefer to let the database do as much of the "heavy lifting" as possible, including managing the referential integrity.
    Are all of your relationships many-to-many?  If some are one-to-many, you can use a foreign-key column in the child tables that stores the primary-key of the parent table - and the database can still manage referential integrity.  That may reduce the need for some of the join tables.
    Regardless, if you decide to proceed with the global join table you need to make absolutely sure your indexes on that table are tuned properly or you'll likely take a performance hit.
    -Carl V.

  • One wallet to rule them all!

    Hi,
    I wonder if you can settle a debate we are having...should we have one wallet per database or one wallet per application?
    That is, we have several applications that access the same database and would like to know the best practice for storing Oracle Wallets. Should we have a single Wallet where all certificates are imported and it is then accessed by all applications or a separate Wallet for each application with the certificates required for that application alone?
    Many Thanks,
    Tom

    Hi Michael
    I would like to make an interface screen that would auto launch
    so that the user would have a choice of what demonstration they
    would like to see. Ultimately we would like the final project to be
    an exe
    Have you explored the companion MenuBuilder application for
    this?
    So far I have tried to create buttons that point to animation
    (swf) slides. We would like this demo to be standalone and not link
    based.
    Not sure I follow you there. Anything that offers an ability
    to click to launch a movie will be link based.
    The issue with this is that the end user cannot use the main
    “progress” bar at the bottom of the screen (I have to
    include a progress bar in the animation, so it looks like there are
    2 progress bars at the bottom of the screen. If I do not include
    the progress bar there is no way to fast forward the animation).
    Also if I go back to the main (first slide) slide and chose another
    demonstration the audio from the first on is still playing and over
    laps.
    Sounds as if you are trying to accomplish this all in one
    single .SWF? Perhaps by importing different movies on different
    slides of a master movie?
    The next thing I tried was importing all the projects into one
    “supper” projects.
    The issues with this is that now I can access the progress
    bar but now I can skip from one demo to another (I would like
    create a break in between. The user should only see one demo at a
    time)
    Again, perhaps MenuBuilder could help here. Either that, or
    perhaps Jesse Warden's Captivate Player?
    Click
    here for Captivate Player. Fellow Adobe Community Expert Paul
    Dewhurst also offers up assorted players.
    Click
    here
    I know I could create link to exes but I would like to avoid IE
    (internet Explorer) or any other browser.
    Again I'm confused. EXE files are normally presented in their
    own player and not inside a browser.
    Cheers... Rick

  • One Knob to Rule Them All?

    is there a way that I can use one rotary MIDI controller to just give me control over what ever parameter I am on at the moment?
    I thought this use to be possible in earleir versions of logic but I can not seem to find it in Logic 9

    Hi Michael
    I would like to make an interface screen that would auto launch
    so that the user would have a choice of what demonstration they
    would like to see. Ultimately we would like the final project to be
    an exe
    Have you explored the companion MenuBuilder application for
    this?
    So far I have tried to create buttons that point to animation
    (swf) slides. We would like this demo to be standalone and not link
    based.
    Not sure I follow you there. Anything that offers an ability
    to click to launch a movie will be link based.
    The issue with this is that the end user cannot use the main
    “progress” bar at the bottom of the screen (I have to
    include a progress bar in the animation, so it looks like there are
    2 progress bars at the bottom of the screen. If I do not include
    the progress bar there is no way to fast forward the animation).
    Also if I go back to the main (first slide) slide and chose another
    demonstration the audio from the first on is still playing and over
    laps.
    Sounds as if you are trying to accomplish this all in one
    single .SWF? Perhaps by importing different movies on different
    slides of a master movie?
    The next thing I tried was importing all the projects into one
    “supper” projects.
    The issues with this is that now I can access the progress
    bar but now I can skip from one demo to another (I would like
    create a break in between. The user should only see one demo at a
    time)
    Again, perhaps MenuBuilder could help here. Either that, or
    perhaps Jesse Warden's Captivate Player?
    Click
    here for Captivate Player. Fellow Adobe Community Expert Paul
    Dewhurst also offers up assorted players.
    Click
    here
    I know I could create link to exes but I would like to avoid IE
    (internet Explorer) or any other browser.
    Again I'm confused. EXE files are normally presented in their
    own player and not inside a browser.
    Cheers... Rick

  • Wanted: One Format to Rule Them All

    Sorry if this is a repeat, but I've been surfing Dolby 5.1 topics here for hours and I can't find anything that fits my question precisely. Here's the deal:
    I have always formatted my movies to work best through Apple TV, with Dolby AC3 soundtracks. I'd like the option to play the video either through the ATV or the iPhone, getting stereo from an included AAC soundtrack where necessary, and AC3 from my ATV when going that route.
    In other words, I'd like a format that plays in Dolby 5.1 on my ATV and also plays on the iPhone in whatever downmix the iPhone requires. I'm more than happy to give up the extra anamorphic resolution of a DVD, and completely forego the 720p24 the ATV is capable of if I could just reduce my library to _ONE FILE PER MOVIE_.
    Not possible is it? I'm guessing the AC3 soundtrack renders the file useless on an iPhone, even WITH an included AAC audio track.

    Well now that's just batty. I was using the iPhone preset in Handbrake, and the resulting files simply would not sync to my iPhone. Incidentally, that preset (at least the one in my installation) starts by chopping the frame size down to the iPhone's display size, even though the specs say it can handle up to 640 x 480. Also, the AAC default for that preset is 48KHz by 128mpbs. I've now tried it resized to 640 width and 160 mbps with an included AC3 and both versions sync and play on the ATV with the appropriate Dolby 5.1.
    The only thing I was doing differently last night -that I can think of- was forcing the video bitrate to average 1,000 Mbps, which should have been well within the 1,500 the iPhone is capable of. I can only assume that setting is in fact VBR and somewhere the bitrate exceeded 1,500. Oh well. As much as I hate using a constant video compression rate, I guess it's best not to screw with it.
    Problem solved. Thanks for the quick reply!

  • One account to rule them all?

    Hi,
    I have recently migrated my old skype account to my ms account. However I'd like to have only one account, now they're only linked together. On my friends' devices they se me on skype as both originally skype name and the newly added (linked) ms account. Wouldn't it be neat to have the entirely migrated so that only one account shows up with only one name? (Same issue with old messenger, my friends see two display names, one messenger and one outlook.com. Since messenger is no more, I can't log on to that old account and remove it, as that. action will remove my entire ms account).
    I would like to see a solution with one ms account where I'm able to just choose which additional ms services I'd like to use (eg Skype). It's fully understandable that I have to make links to services provided by others, such as yahoo, gmail and so on, but since skype now a day is a ms service, it should be provided that way.

    Ahh k,
    that's a known issue then

  • One ActionListener to rule them all?

    Hi, i have one class that implements the ActionListener and has two constructors. The firs constructor is used from the main GUI, and the second constructor is used by a dialog. As it is now, i have to use two constructors. Is there any way to use only one instance of the eventHandling class, that implements the actionListener, for both the frame and the dialog(they are in separate classes)???
    My eventHandling class that implements the actionListener:
    public class EventHandling implements ActionListener
        private HAClientFrame clientFrame;  
        private ConnectDialog connectDialog;
        private AboutDialog aboutDialog;
        private Thread thread;
        private NetworkingThread netThread;
         * constructor
         * @param haClientFrame
        public EventHandling(HAClientFrame haClientFrame)
            this.clientFrame = haClientFrame;
         * constructor
         * @param connectDialog
        public EventHandling(ConnectDialog connDialog)
            this.connectDialog = connDialog;
         * Process the events
        public  void actionPerformed(ActionEvent e)
            if (e.getActionCommand().equals("Exit"))
                clientFrame.windowClosed();
    }My Dialog class:
    public class ConnectDialog extends JDialog
        private EventHandling handler = new EventHandling(this);
         * This is the default constructor
        public ConnectDialog() {
            super();
            initialize();
    // some more code is here
    jButton.addActionListener(handler);
    .......The code for the frame:
    public class HAClientFrame extends JFrame {
        private EventHandling handler = new EventHandling(this);
    // Some more code here
    menuFileExit.addActionListener(handler);
    ...Is it possible to use only one instance of the eventHandling class for both the other classes so i dont have to create a separate instance of the listener for each class?
    Thank you

    Your event handler does not need an instance of the dialog to perform its duty, only an instance of the frame. I would consolidate the listener by only including the constructor that takes a frame instance. Then the dialogs will need to pass the frame instance into the event listener. So your dialog should appear as
    public class ConnectDialog extends JDialog
        private EventHandling;
         * This is the only constructor
        public ConnectDialog( HAClientFrame listener ) {
    or with a little more rewriting use an interface such as
        public ConnectDialog( WindowEventListener listener ) {
            super();
            handler = new EventHandling(listener)
            initialize();
    ......If you use an interface you can use anyone who implements the interface in the consturctor.

  • One rendition to rule them all

    So I've upgraded to Producer 23 and made an iPad folio at 1024x768 hopinh it would automatically download a retina version but the images are still not retina.
    What am I doing wrong? It was set to PDF.

    Read this:
    http://help.adobe.com/en_US/digitalpubsuite/using/WS804da476e1fb25e6276784b6139c71bed03-80 00.html

  • Painting one root Application Module to rule them all

    hi
    The description below uses the same MyApplicationModuleListener approach as I describe in the forum thread "painting a picture of Application Module pooling".
    Another example review of Application Module pools behaviour is the blog post by Chris Muir, "JDev 11g, Task Flows & ADF BC – one root Application Module to rule them all?".
    That post also says "... we'll have trouble discerning what the ADF BC layer is actually doing underneath the task flow transaction options. ...", where the approach below might help alleviate some of that discerning trouble.
    And about "... By deduction as there are no other log entries, this second instance of Root1AppModule must be nested under the root Root1AppModule? ..." more information will be logged, so less deduction is required.
    The blog post describes an application similar to this one (which is using the HR.EMPLOYEES table) created using JDeveloper 11.1.1.6.0
    at http://www.consideringred.com/files/oracle/2012/OneSizeOneRootAMApp-v0.01.zip
    It uses somewhat different names than the blog post, and it has two sets of task-flows so that no transaction configuration changes are required to review the behaviour.
    When a MyApplicationModuleListener approach is introduced (with minor changes, mostly configuration, using JAR files available in MyApplicationModuleListenerApp-v0.03.zip) it results in the application available
    at http://www.consideringred.com/files/oracle/2012/OneSizeOneRootAMApp-v0.02.zip
    Using this, the (chained) "No Controller Transaction" scenario's result in similar logging like this:
    [C][L][r1001][(ctx31) /faces : /firstIndex] setRequestInfoPrefix() : extra [GET with 3 parameters (partial request false) (initial render true) (postback true)]
    [C][L][r1002][(ctx32) /faces : /firstIndex] setRequestInfoPrefix() : extra [GET with 3 parameters (partial request false) (initial render true) (postback true)]
    [C][L][r1001][(ctx31) /faces : /firstIndex] onAfterRequest() : no ApplicationPools
    [C][L][r1002][(ctx32) /faces : /firstIndex] onAfterRequest() : no ApplicationPools
    [C][L][r1003][(ctx31) /faces : /firstIndex] setRequestInfoPrefix() : extra [POST with 5 parameters (partial request false) (initial render false) (postback true)]
    [C][L][r1003][(ctx31) /faces : /firstIndex] onNewConstruction() : [(am501) FirstAppModuleImpl_1 (not root) parent = (null)]
    [C][L][r1003][(ctx31) /faces : /firstIndex] onActivate() : [(am501) FirstAppModule (is root)](session version 11.1.1.61.92 oracle.jbo.server.SessionImpl@16cbcec)
    [C][L][r1003][(ctx31) /faces : /firstIndex] onCreate() : [(am501) FirstAppModule (is root)]
    ########FirstAppModuleImpl.create() called.  AM isRoot() = true
    [C][L][r1003][(ctx31) /faces : /firstIndex] onAfterConnect() : [(am501) FirstAppModule (is root)]
    [C][L][r1003][(ctx31) /faces : /firstIndex] onPrepareSession() : [(am501) FirstAppModule (is root)]
    ########FirstAppModuleImpl.prepareSession() called.  AM isRoot() = true
    [C][L][r1003][(ctx31) /faces : /firstIndex] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_USING (1) STATUS_SUCCESS (8) (rp 4)]
    [C][L][r1003][(ctx31) /faces : /firstIndex] onPassivateState() : 5 : [(am501) FirstAppModule (is root)] pId = -1, pClientData = null, pFlags = PASSIVATE_HINT_FLAG (16)
    [C][L][r1003][(ctx31) /faces : /firstIndex] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [C][L][r1003][(ctx31) /faces : /firstIndex] onNewShortId() : pNewShortId = ds81, pId = java:comp/env/jdbc/connHRDS - com.bea:ServerRuntime=DefaultServer,Name=OneSizeOneRootAMApp@connHR@connHR,ApplicationRuntime=OneSizeOneRootAMApp,Type=JDBCDataSourceRuntime
    [C][L][r1003][(ctx31) /faces : /firstIndex] onAfterRequest() : 1 : ApplicationPool = onesizeonerootamapp.model.FirstAppModuleLocal
    (ap21)[cre 1; rem 0; act 0; pas 0; co 1; ci 1; ref reu 0; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 1; avai 0; unav 1; cp hig 1; ac cur 1; ac avg 0; ac hig 1; co del 168; co tot 1; res req 1; fai res 0; fai rec 0; h avai 1; h unav 1; lea co 0; psc acc 0; psc add 0; psc csi 0; psc del 0; psc hit 0; psc mis 0; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]
    [C][L][r1004][(ctx31) /faces : /firstam-btf/empVoFirstViPage] setRequestInfoPrefix() : extra [GET with 5 parameters (partial request true) (initial render false) (postback true)]
    [C][L][r1004][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_USING (1) STATUS_SUCCESS (8) (rp 4)]
    [C][L][r1004][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onPassivateState() : 5 : [(am501) FirstAppModule (is root)] pId = -1, pClientData = null, pFlags = PASSIVATE_HINT_FLAG (16)
    [C][L][r1004][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [C][L][r1004][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterRequest() : 1 : ApplicationPool = onesizeonerootamapp.model.FirstAppModuleLocal
    (ap21)[cre 1; rem 0; act 0; pas 0; co 2; ci 2; ref reu 1; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 1; avai 0; unav 1; cp hig 1; ac cur 1; ac avg 0; ac hig 1; co del 168; co tot 1; res req 1; fai res 0; fai rec 0; h avai 1; h unav 1; lea co 0; psc acc 2; psc add 2; psc csi 2; psc del 0; psc hit 0; psc mis 2; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] setRequestInfoPrefix() : extra [POST with 55 parameters (partial request false) (initial render false) (postback true)]
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_USING (1) STATUS_SUCCESS (8) (rp 4)]
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onNewConstruction() : [(am502) SecondAppModuleImpl_154 (not root) parent = (null)]
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onActivate() : [(am502) SecondAppModule (is root)](session version 11.1.1.61.92 oracle.jbo.server.SessionImpl@8add89)
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onCreate() : [(am502) SecondAppModule (is root)]
    ########SecondAppModuleImpl.create() called.  AM isRoot() = true
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterConnect() : [(am502) SecondAppModule (is root)]
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onPrepareSession() : [(am502) SecondAppModule (is root)]
    ########SecondAppModuleImpl.prepareSession() called.  AM isRoot() = true
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am502) SecondAppModule (is root)][(ses101) MESSAGE_TYPE_USING (1) STATUS_SUCCESS (8) (rp 4)]
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onPassivateState() : 5 : [(am501) FirstAppModule (is root)] pId = -1, pClientData = null, pFlags = PASSIVATE_HINT_FLAG (16)
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onPassivateState() : 5 : [(am502) SecondAppModule (is root)] pId = -1, pClientData = null, pFlags = PASSIVATE_HINT_FLAG (16)
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am502) SecondAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterRequest() : 1 : ApplicationPool = onesizeonerootamapp.model.FirstAppModuleLocal
    (ap21)[cre 1; rem 0; act 0; pas 0; co 3; ci 3; ref reu 2; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 2; avai 0; unav 2; cp hig 2; ac cur 2; ac avg 0; ac hig 2; co del 122; co tot 2; res req 2; fai res 0; fai rec 0; h avai 1; h unav 2; lea co 0; psc acc 2; psc add 2; psc csi 2; psc del 0; psc hit 0; psc mis 2; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]
    [C][L][r1005][(ctx31) /faces : /firstam-btf/empVoFirstViPage] onAfterRequest() : 2 : ApplicationPool = onesizeonerootamapp.model.SecondAppModuleLocal
    (ap22)[cre 1; rem 0; act 0; pas 0; co 1; ci 1; ref reu 0; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 2; avai 0; unav 2; cp hig 2; ac cur 2; ac avg 0; ac hig 2; co del 122; co tot 2; res req 2; fai res 0; fai rec 0; h avai 1; h unav 2; lea co 0; psc acc 2; psc add 2; psc csi 2; psc del 0; psc hit 0; psc mis 2; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]
    [C][L][r1006][(ctx31) /faces : /secondam-btf/empVoSecondViPage] setRequestInfoPrefix() : extra [GET with 5 parameters (partial request true) (initial render false) (postback true)]
    [C][L][r1006][(ctx31) /faces : /secondam-btf/empVoSecondViPage] onAfterDoPoolMessage() : [(am502) SecondAppModule (is root)][(ses101) MESSAGE_TYPE_USING (1) STATUS_SUCCESS (8) (rp 4)]
    [C][L][r1006][(ctx31) /faces : /secondam-btf/empVoSecondViPage] onPassivateState() : 5 : [(am502) SecondAppModule (is root)] pId = -1, pClientData = null, pFlags = PASSIVATE_HINT_FLAG (16)
    [C][L][r1006][(ctx31) /faces : /secondam-btf/empVoSecondViPage] onAfterDoPoolMessage() : [(am502) SecondAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [C][L][r1006][(ctx31) /faces : /secondam-btf/empVoSecondViPage] onAfterRequest() : 1 : ApplicationPool = onesizeonerootamapp.model.FirstAppModuleLocal
    (ap21)[cre 1; rem 0; act 0; pas 0; co 3; ci 3; ref reu 2; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 2; avai 0; unav 2; cp hig 2; ac cur 2; ac avg 0; ac hig 2; co del 122; co tot 2; res req 2; fai res 0; fai rec 0; h avai 1; h unav 2; lea co 0; psc acc 4; psc add 4; psc csi 4; psc del 0; psc hit 0; psc mis 4; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]
    [C][L][r1006][(ctx31) /faces : /secondam-btf/empVoSecondViPage] onAfterRequest() : 2 : ApplicationPool = onesizeonerootamapp.model.SecondAppModuleLocal
    (ap22)[cre 1; rem 0; act 0; pas 0; co 2; ci 2; ref reu 1; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 2; avai 0; unav 2; cp hig 2; ac cur 2; ac avg 0; ac hig 2; co del 122; co tot 2; res req 2; fai res 0; fai rec 0; h avai 1; h unav 2; lea co 0; psc acc 4; psc add 4; psc csi 4; psc del 0; psc hit 0; psc mis 4; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]The "Always Begin New Transaction and Always Use Existing transaction" scenario results in logging like this:
    [C][L][r1001][(ctx31) /faces : /secondIndex] setRequestInfoPrefix() : extra [GET with 3 parameters (partial request false) (initial render true) (postback true)]
    [C][L][r1002][(ctx32) /faces : /secondIndex] setRequestInfoPrefix() : extra [GET with 3 parameters (partial request false) (initial render true) (postback true)]
    [C][L][r1001][(ctx31) /faces : /secondIndex] onAfterRequest() : no ApplicationPools
    [C][L][r1002][(ctx32) /faces : /secondIndex] onAfterRequest() : no ApplicationPools
    [C][L][r1003][(ctx32) /faces : /secondIndex] setRequestInfoPrefix() : extra [POST with 5 parameters (partial request false) (initial render false) (postback true)]
    [C][L][r1003][(ctx32) /faces : /secondIndex] onNewConstruction() : [(am501) FirstAppModuleImpl_1 (not root) parent = (null)]
    [C][L][r1003][(ctx32) /faces : /secondIndex] onActivate() : [(am501) FirstAppModule (is root)](session version 11.1.1.61.92 oracle.jbo.server.SessionImpl@1d90a2c)
    [C][L][r1003][(ctx32) /faces : /secondIndex] onCreate() : [(am501) FirstAppModule (is root)]
    ########FirstAppModuleImpl.create() called.  AM isRoot() = true
    [C][L][r1003][(ctx32) /faces : /secondIndex] onAfterConnect() : [(am501) FirstAppModule (is root)]
    [C][L][r1003][(ctx32) /faces : /secondIndex] onPrepareSession() : [(am501) FirstAppModule (is root)]
    ########FirstAppModuleImpl.prepareSession() called.  AM isRoot() = true
    [C][L][r1003][(ctx32) /faces : /secondIndex] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_USING (1) STATUS_SUCCESS (8) (rp 4)]
    [C][L][r1003][(ctx32) /faces : /secondIndex] onNewConstruction() : [(am502) FirstAppModuleImpl_2 (not root) parent = (null)]
    [C][L][r1003][(ctx32) /faces : /secondIndex] onSetParent() : 2 : [(am502) onesizeonerootamapp_model_FirstAppModule (not root) parent = (null)] parent = [(am501) FirstAppModule (is root)]
    [C][L][r1003][(ctx32) /faces : /secondIndex] onCreate() : [(am502) onesizeonerootamapp_model_FirstAppModule (not root) parent = [(am501) FirstAppModule (is root)]]
    ########FirstAppModuleImpl.create() called.  AM isRoot() = false
    [C][L][r1003][(ctx32) /faces : /secondIndex] onPassivateState() : 5 : [(am501) FirstAppModule (is root)] pId = -1, pClientData = null, pFlags = PASSIVATE_HINT_FLAG (16)
    [C][L][r1003][(ctx32) /faces : /secondIndex] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [C][L][r1003][(ctx32) /faces : /secondIndex] onNewShortId() : pNewShortId = ds81, pId = java:comp/env/jdbc/connHRDS - com.bea:ServerRuntime=DefaultServer,Name=OneSizeOneRootAMApp@connHR@connHR,ApplicationRuntime=OneSizeOneRootAMApp,Type=JDBCDataSourceRuntime
    [C][L][r1003][(ctx32) /faces : /secondIndex] onAfterRequest() : 1 : ApplicationPool = onesizeonerootamapp.model.FirstAppModuleLocal
    (ap21)[cre 1; rem 0; act 0; pas 0; co 1; ci 1; ref reu 0; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 1; avai 0; unav 1; cp hig 1; ac cur 1; ac avg 0; ac hig 1; co del 75; co tot 1; res req 1; fai res 0; fai rec 0; h avai 1; h unav 1; lea co 0; psc acc 0; psc add 0; psc csi 0; psc del 0; psc hit 0; psc mis 0; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]
    [L-before][L][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_USING (1) STATUS_SUCCESS (8) (rp 4)]
    [C][L][r1004][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] setRequestInfoPrefix() : extra [GET with 5 parameters (partial request true) (initial render false) (postback true)]
    [C][L][r1004][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onPassivateState() : 5 : [(am501) FirstAppModule (is root)] pId = -1, pClientData = null, pFlags = PASSIVATE_HINT_FLAG (16)
    [C][L][r1004][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [C][L][r1004][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterRequest() : 1 : ApplicationPool = onesizeonerootamapp.model.FirstAppModuleLocal
    (ap21)[cre 1; rem 0; act 0; pas 0; co 2; ci 2; ref reu 1; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 1; avai 0; unav 1; cp hig 1; ac cur 1; ac avg 0; ac hig 1; co del 75; co tot 1; res req 1; fai res 0; fai rec 0; h avai 1; h unav 1; lea co 0; psc acc 2; psc add 2; psc csi 2; psc del 0; psc hit 0; psc mis 2; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]
    [L-before][L][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_USING (1) STATUS_SUCCESS (8) (rp 4)]
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] setRequestInfoPrefix() : extra [POST with 55 parameters (partial request false) (initial render false) (postback true)]
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onPassivateStateForUndo() : [(am501) FirstAppModule (is root)] pId = null, pClientData = null, pFlags = unknown passivation flags (0)
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onPassivateState() : 2 : [(am501) FirstAppModule (is root)] pClientData = null, pFlags = PASSIVATE_UNDO_FLAG, PASSIVATE_TO_STACK_FLAG (40)
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onPassivateConnectionState() : [(am502) onesizeonerootamapp_model_FirstAppModule (not root) parent = [(am501) FirstAppModule (is root)]] pDoc = (name = #document, doc elem = null), pParent = (name = CONN)
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onPassivateConnectionState() : [(am501) FirstAppModule (is root)] pDoc = (name = #document, doc elem = null), pParent = (name = CONN)
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onPrepareForPassivation() : [(am501) FirstAppModule (is root)] pOut = (name = #document, doc elem = null) pParent = (name = AM)
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onPrepareForPassivation() : [(am502) onesizeonerootamapp_model_FirstAppModule (not root) parent = [(am501) FirstAppModule (is root)]] pOut = (name = #document, doc elem = null) pParent = (name = AM)
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onPassivateState() : 3 : [(am502) onesizeonerootamapp_model_FirstAppModule (not root) parent = [(am501) FirstAppModule (is root)]] pDoc = (name = #document, doc elem = null), pParent = (name = AM)
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onPassivateState() : 3 : [(am501) FirstAppModule (is root)] pDoc = (name = #document, doc elem = null), pParent = (name = AM)
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onNewConstruction() : [(am503) SecondAppModuleImpl_155 (not root) parent = (null)]
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onSetParent() : 2 : [(am503) onesizeonerootamapp_model_SecondAppModule (not root) parent = (null)] parent = [(am501) FirstAppModule (is root)]
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onCreate() : [(am503) onesizeonerootamapp_model_SecondAppModule (not root) parent = [(am501) FirstAppModule (is root)]]
    ########SecondAppModuleImpl.create() called.  AM isRoot() = false
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onPassivateState() : 5 : [(am501) FirstAppModule (is root)] pId = -1, pClientData = null, pFlags = PASSIVATE_HINT_FLAG (16)
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [C][L][r1005][(ctx31) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterRequest() : 1 : ApplicationPool = onesizeonerootamapp.model.FirstAppModuleLocal
    (ap21)[cre 1; rem 0; act 0; pas 0; co 3; ci 3; ref reu 2; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 2; avai 1; unav 1; cp hig 2; ac cur 1; ac avg 0; ac hig 2; co del 79; co tot 2; res req 2; fai res 0; fai rec 0; h avai 1; h unav 2; lea co 0; psc acc 3; psc add 3; psc csi 3; psc del 0; psc hit 0; psc mis 3; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]
    [L-before][L][(ctx31) /faces : /secondam-tx-btf/empVoSecondViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_USING (1) STATUS_SUCCESS (8) (rp 4)]
    [C][L][r1006][(ctx31) /faces : /secondam-tx-btf/empVoSecondViPage] setRequestInfoPrefix() : extra [GET with 5 parameters (partial request true) (initial render false) (postback true)]
    [C][L][r1006][(ctx31) /faces : /secondam-tx-btf/empVoSecondViPage] onPassivateState() : 5 : [(am501) FirstAppModule (is root)] pId = -1, pClientData = null, pFlags = PASSIVATE_HINT_FLAG (16)
    [C][L][r1006][(ctx31) /faces : /secondam-tx-btf/empVoSecondViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [C][L][r1006][(ctx31) /faces : /secondam-tx-btf/empVoSecondViPage] onAfterRequest() : 1 : ApplicationPool = onesizeonerootamapp.model.FirstAppModuleLocal
    (ap21)[cre 1; rem 0; act 0; pas 0; co 4; ci 4; ref reu 3; ref rec 0; unr rec 0; fail 0; tot am 1; max am 1; avg am 1; tot ava 1; avg ava 1; avg una 0; tot ref 1; ses 1; avg ses 1]
    (ds81)[cur cap 2; avai 1; unav 1; cp hig 2; ac cur 1; ac avg 0; ac hig 2; co del 79; co tot 2; res req 2; fai res 0; fai rec 0; h avai 1; h unav 2; lea co 0; psc acc 5; psc add 3; psc csi 3; psc del 0; psc hit 1; psc mis 4; wfc cur 0; wfc fai 0; wfc hig 0; wfc tot 0; wse hig 0]This seems to confirm more explicitly some of the observations in the blog post, and at the same time might add some additional insight into what the framework is doing.
    Suggestions to improve such MyApplicationModuleListener approach (or an alternative approach) are welcome.
    many thanks
    Jan Vervecken

    fyi
    Some additional features were added in the JAR files available
    in http://www.consideringred.com/files/oracle/2013/MyApplicationModuleListenerApp-v0.05.zip
    Like line numbers, or a queryOneRecord() method to support logging the database session SID, or a TaskFlowInfoHelper class to allow logging task-flow transaction options or DataControlFrame information.
    If these JAR files are used, it results in the modified example application
    at http://www.consideringred.com/files/oracle/2013/OneSizeOneRootAMApp-v0.03.zip
    For the same scenarios (using OneSizeOneRootAMApp-v0.03.zip), the resulting logging can be found in these files:
    - "maml-log-20130113-jdev111160-nctx.txt" : when using JDeveloper 11.1.1.6.0 and the chained "No Controller Transaction" scenario :
    [0002][C][L][r1001][(ctx31) /faces : /firstIndex] logContextInformation() :
    [0003]#{a_versionBean.appVersionInfo} = OneSizeOneRootAMApp v0.03 : oracle.jbo.Version = 11.1.1.61.92
    [0007][C][L][r1002][(ctx32) /faces : /firstIndex] onAfterPrepareModel() : task-flow = (no current TaskFlowId) (unbounded task-flow pages)
    [0008]transaction type = (no current TaskFlowId), DC scope = (no current TaskFlowId), DC frame = e1o4lmuw3_2, open transaction = null, is transaction dirty = false
    [0044][C][L][r1005][(ctx32) /faces : /firstam-btf/empVoFirstViPage] onAfterPrepareModel() : task-flow = /WEB-INF/btf/firstam-btf.xml#firstam-btf (no page-fragments)
    [0045]transaction type = -No Controller Transaction-, DC scope = shared DataControlScopeType, DC frame = e1o4lmuw3_2, open transaction = null, is transaction dirty = false
    [0046][C][L][r1005][(ctx32) /faces : /firstam-btf/empVoFirstViPage] onAfterPrepareModel() : task-flow = /WEB-INF/btf/secondam-btf.xml#secondam-btf (no page-fragments)
    [0047]transaction type = -No Controller Transaction-, DC scope = shared DataControlScopeType, DC frame = e1o4lmuw3_2, open transaction = null, is transaction dirty = true
    [0057][C][L][r1005][(ctx32) /faces : /firstam-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [0058](am501) SID = 41 for select sys_context('USERENV', 'SID') as sid from dual
    [0060][C][L][r1005][(ctx32) /faces : /firstam-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am502) SecondAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [0061](am502) SID = 27 for select sys_context('USERENV', 'SID') as sid from dual
    Notice the transaction type and DataControl scope information per task-flow.
    Notice the different database session SID values ("[0058](am501) SID = 41" and "[0061](am502) SID = 27") during the same request [r1005].
    - "maml-log-20130113-jdev111230-nctx.txt" : when using JDeveloper 11.1.2.3.0 and the chained "No Controller Transaction" scenario :
    [0002][C][L][r1001][(ctx31) /faces : /firstIndex] logContextInformation() :
    [0003]#{a_versionBean.appVersionInfo} = OneSizeOneRootAMApp v0.03 : oracle.jbo.Version = 11.1.2.62.76
    Notice the logged information seems similar to when, for the same application and scenario, JDeveloper 11.1.1.6.0 is used (above).
    - "maml-log-20130113-jdev111160-tx.txt" : when using JDeveloper 11.1.1.6.0 and the "Always Begin New Transaction and Always Use Existing transaction" scenario :
    [0002][C][L][r1001][(ctx31) /faces : /secondIndex] logContextInformation() :
    [0003]#{a_versionBean.appVersionInfo} = OneSizeOneRootAMApp v0.03 : oracle.jbo.Version = 11.1.1.61.92
    [0013][C][L][r1003][(ctx32) /faces : /secondIndex] onAfterPrepareModel() : task-flow = /WEB-INF/btf/firstam-tx-btf.xml#firstam-tx-btf (no page-fragments)
    [0014]transaction type = Always Begin New Transaction, DC scope = isolated DataControlScopeType, DC frame = 1220j2l4q9_5, open transaction = 1220j2l4q9_5, is transaction dirty = false
    [0017][C][L][r1003][(ctx32) /faces : /secondIndex] onCreate() : [(am501) FirstAppModule (is root)]
    [0018](am501) SID = 41 for select sys_context('USERENV', 'SID') as sid from dual
    [0025][C][L][r1003][(ctx32) /faces : /secondIndex] onCreate() : [(am502) onesizeonerootamapp_model_FirstAppModule (not root) parent = [(am501) FirstAppModule (is root)]]
    [0026](am502) SID = 41 for select sys_context('USERENV', 'SID') as sid from dual
    [0056][C][L][r1005][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterPrepareModel() : task-flow = /WEB-INF/btf/secondam-tx-btf.xml#secondam-tx-btf (no page-fragments)
    [0057]transaction type = Always Use Existing Transaction, DC scope = shared DataControlScopeType, DC frame = 1220j2l4q9_5, open transaction = 1220j2l4q9_5, is transaction dirty = true
    [0060][C][L][r1005][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onCreate() : [(am503) onesizeonerootamapp_model_SecondAppModule (not root) parent = [(am501) FirstAppModule (is root)]]
    [0061](am503) SID = 41 for select sys_context('USERENV', 'SID') as sid from dual
    [0063][C][L][r1005][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [0064](am501) SID = 41 for select sys_context('USERENV', 'SID') as sid from dual
    Notice that nested Application Module instances are created, resulting in one database session SID value per request.
    - "maml-log-20130113-jdev111230-tx.txt" : when using JDeveloper 11.1.2.3.0 and the "Always Begin New Transaction and Always Use Existing transaction" scenario :
    [0002][C][L][r1001][(ctx31) /faces : /secondIndex] logContextInformation() :
    [0003]#{a_versionBean.appVersionInfo} = OneSizeOneRootAMApp v0.03 : oracle.jbo.Version = 11.1.2.62.76
    [0052][C][L][r1005][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterPrepareModel() : task-flow = /WEB-INF/btf/firstam-tx-btf.xml#firstam-tx-btf (no page-fragments)
    [0053]transaction type = Always Begin New Transaction, DC scope = isolated DataControlScopeType, DC frame = dw58co387_4, open transaction = dw58co387_4, is transaction dirty = false
    [0059][C][L][r1005][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterPrepareModel() : task-flow = /WEB-INF/btf/secondam-tx-btf.xml#secondam-tx-btf (no page-fragments)
    [0060]transaction type = Always Use Existing Transaction, DC scope = shared DataControlScopeType, DC frame = dw58co387_4, open transaction = dw58co387_4, is transaction dirty = true
    [0070][C][L][r1005][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am501) FirstAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [0071](am501) SID = 38 for select sys_context('USERENV', 'SID') as sid from dual
    [0073][C][L][r1005][(ctx32) /faces : /firstam-tx-btf/empVoFirstViPage] onAfterDoPoolMessage() : [(am502) SecondAppModule (is root)][(ses101) MESSAGE_TYPE_RELEASING (2) STATUS_SUCCESS (8) (rp 3)]
    [0074](am502) SID = 38 for select sys_context('USERENV', 'SID') as sid from dual
    Notice that two root Application Module instances are used in the same request (and no nested instances), and both (am501) and (am502) report using the same database session SID value. That seems to be "Bruce" [1] at work.
    Remember, it should not be difficult (and not intrusive) to configure similar logging for other ADF applications.
    - [1] seeblog post "Task flows: Sayonara auto AM nesting in 11.1.2.0.0. Hello, ah, let's call it Bruce."
    at http://one-size-doesnt-fit-all.blogspot.com.au/2011/08/task-flows-sayonara-auto-am-nesting-in.html
    regards
    Jan Vervecken

  • TS4436 How do I select more than one picture and send them all to Facebook on my iPhone 4s with iso7?

    How do I select more than one picture and send them all to Facebook on my iPhone 4s with iso7?

    Hi, I want to thank you for all your information regarding my questions about sending more than one photo to Facebook. I did have to stop in at Verizon (where I bought my iPhone) to find out why I did not have a choice to choose Facebook with the export icon. The tech had to go into my setting and enable Facebook to recognize my iPhone. When I upgraded to iso7 somehow it could not recognize Facebook. Once he did this for me I was able to follow your advice and your answer solved my question. Thank you

  • I have an IPad Model number A1475. I want to search all emails from one certain sender, Mark them all at one time without doing each one individually, and then delete them all at one push of a button. How do I do this?

    I have an IPad Model A1475. I want search all emails from a certain sender, Mark them all at one time and delete them at one time. How do I do this?

    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.

  • When I try to export one calendar, it exports them all

    I am trying to export one of my Calendars on iCal into a Google Calendar.  Even though I only have the one calendar selected, it exports all my calendars.  I am using Lion.

    Others have the same complaint.  iCal on the iPad can do recurring appointments, but not in the format you want (First Tuesday of every Month).  It will do the same DATE each month (e.g, the 25th of each month), but for now it does not do a particular DAY of each month.

  • Font Book Query- one font book to rule them all...

    I see three places to install/display/keep fonts in Font Book-
    All
    User
    Computer
    I'd love to have just one place that I install fonts to and that all my apps and any user of the machine can access.
    1) Which one should I install to to acheive this?
    2) If I've fonts that show in one and not another of these locations what's the best way to ensure that those fonts get shifted in to the right one?
    3) Are fonts in these locations duplicated files or just shortcuts to one file?
    iMac G5   Mac OS X (10.4.5)   minimal RAM (512MB) installed

    The basic rules are:
    Keep out of system/fonts. (You can alter here, but you need to be really careful)
    library/fonts allows all users of the Mac access to fonts inside.
    user/you/library/fonts are for THAT user only.
    Kurt Lang has a great font FAQ - I have to find the link for it. You can/will learn most of what you need to know from that.
    I highly recommend Linotype FontExplorer X. You can get it from macupdate.com or versiontracker.com.
    *EDIT: HERE is the link. Enjoy.
    Scott

Maybe you are looking for

  • Empty Trash with Time Machine

    Time Machine backed up some files I do not want backed up. I dragged them to the trash and tried secured delete, option delete and tried "chflags -R nouchg " in terminal and the trash will not empty. I cannot drag these files anywhere. This link: htt

  • Rescue and Recovery and mcafee endpoint encryption

    just an fyi. Maybe it will save someone hassle. Apparently mcafee endpoint encryption and rescue and recovery are not compatible My company uses mcafee solution to protect data. IT installed corp image and wiped recovery partition. They also missed m

  • How to Make use of CCMS.

    Hi experts, as we had different clients in different locations at a given geographical location, we would like to set up an central CCMS monitoring. i.e. mainly establishing one central monitoring system. Which can track on the activity of different

  • Bom for lsmw

    Hi friends, I want to upload the bom through lsmw. I have created two sourct structures. 1. Header level 2 low level is item level. How to assign the excel sheets for these two structures. Please explain the steps for uploading the bom Please help me

  • Maximum Hardrive

    I have had my Macbook now since Jan 2007 with 160GB hardrive. I want to upgrade it. 1. What's the maximum size that I can go to? 2. Are there any suggestion in terms of brands, specs, etc...?