Presenting advanced view

My DBA has made to me an advanced view that has attributes from many tables. A very long join.
I am wondering how I am to present this view on the UI by the help of Oracle ADF Business components?
Or should I use other means of business persistence. Maybe I should use the toplink instead?
I hope for good advice. Many regards...

With ADF Business Components you can create Entity Objects and View Objects on a VIEW as well as a table. Just treat it like a table and you should be fine.
Toplink also supports views as well as tables.
Thanks,
Rob
Team JDev
http://www.robsite.org

Similar Messages

  • Advanced View in CUP - SP13

    Anyone install SP13? 
    After running a risk analyis on a request, when clicking on the advanced view I was expecting the permissions and system to appear for the risk.  However a no risks are displayed.  Additionally, when I remove role(s) from the request and re-simulate the risks aren't removed.
    Anyone aware of additional configuration that needs to occur to activate this "new" feature?  I'm using the V01 risk analysis webservice.
    Thanks

    Make sure that the key attribute is set for the master and detail VOs

  • Flash CS5 default template presentation (advanced) modify to play as .mov or .avi

    I am using the default template for presentation (advanced version) to do my presentation.  However, I want to create a .mov or avi from this default template whereby the frames within the "Slides MovieClip" play automatically (in a .mov or .avi file) as opposed to using the keyboard or the buttons to change frames (as in a swf).
    What can I do to the "Actions" to make this convertion?
    import fl.transitions.*;
    // USER CONFIG SETTINGS
    var buttonsOn:Boolean = true; // true, false
    var pageNumberOn:Boolean = true; // true, false
    var transitionOn:Boolean = true; // true, false
    var transitionType:String = "Fade"; // Blinds, Fade, Fly, Iris, Photo, PixelDissolve, Rotate, Squeeze, Wipe, Zoom, Random
    // END USER CONFIG SETTINGS
    // EVENTS
    stage.addEventListener(KeyboardEvent.KEY_DOWN, fl_changeSlideKeyboard);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevSlideButton);
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextSlideButton);
    function fl_changeSlideKeyboard(evt:KeyboardEvent):void
              if(evt.keyCode == 37) // LEFT
                        fl_prevSlide();
              else if (evt.keyCode == 39 || evt.keyCode == 32) // RIGHT OR SPACE
                        fl_nextSlide();
    function fl_prevSlideButton(evt:MouseEvent):void
              fl_prevSlide();
    function fl_nextSlideButton(evt:MouseEvent):void
              fl_nextSlide();
    // END EVENTS
    // FUNCTIONS AND LOGIC
    function fl_prevSlide():void
              if(slides_mc.currentFrame > 1)
                        slides_mc.gotoAndStop(slides_mc.currentFrame-1);
                        if(transitionOn == true)
                                  fl_doTransition();
                        if(pageNumberOn == false)
                                  slideNumber_txt.text = "";
                        } else {
                                  slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);
    function fl_nextSlide():void
              if(slides_mc.currentFrame < slides_mc.totalFrames)
                        slides_mc.gotoAndStop(slides_mc.currentFrame+1);
                        if(transitionOn == true)
                                  fl_doTransition();
                        if(pageNumberOn == false)
                                  slideNumber_txt.text = "";
                        } else {
                                  slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);
    function fl_doTransition():void
              if(transitionType == "Blinds")
                        TransitionManager.start(slides_mc, {type:Blinds, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Fade")
                        TransitionManager.start(slides_mc, {type:Fade, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Fly")
                        TransitionManager.start(slides_mc, {type:Fly, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Iris")
                        TransitionManager.start(slides_mc, {type:Iris, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Photo")
                        TransitionManager.start(slides_mc, {type:Photo, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "PixelDissolve")
                        TransitionManager.start(slides_mc, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Rotate")
                        TransitionManager.start(slides_mc, {type:Rotate, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Squeeze")
                        TransitionManager.start(slides_mc, {type:Squeeze, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Wipe")
                        TransitionManager.start(slides_mc, {type:Wipe, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Zoom")
                        TransitionManager.start(slides_mc, {type:Zoom, direction:Transition.IN, duration:0.25});
              } else if (transitionType == "Random")
                        var randomNumber:Number = Math.round(Math.random()*9) + 1;
                        switch (randomNumber) {
                                  case 1:
                                            TransitionManager.start(slides_mc, {type:Blinds, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 2:
                                            TransitionManager.start(slides_mc, {type:Fade, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 3:
                                            TransitionManager.start(slides_mc, {type:Fly, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 4:
                                            TransitionManager.start(slides_mc, {type:Iris, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 5:
                                            TransitionManager.start(slides_mc, {type:Photo, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 6:
                                            TransitionManager.start(slides_mc, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 7:
                                            TransitionManager.start(slides_mc, {type:Rotate, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 8:
                                            TransitionManager.start(slides_mc, {type:Squeeze, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 9:
                                            TransitionManager.start(slides_mc, {type:Wipe, direction:Transition.IN, duration:0.25});
                                            break;
                                  case 10:
                                            TransitionManager.start(slides_mc, {type:Zoom, direction:Transition.IN, duration:0.25});
                                            break;
              } else
                        trace("error - transitionType not recognized");
    if(buttonsOn == false)
              prev_btn.visible = false;
              next_btn.visible = false;
    slides_mc.gotoAndStop(1);
    stage.scaleMode = StageScaleMode.SHOW_ALL;
    // END FUNCTIONS AND LOGIC
    stop();
    Many thanks so much for reading.  Would appreciate any help.
    --Andy

    You need to change the code in the EVENTS section.  It curently has event listeners assigned to the stage and some buttons for calling the functions that change the slides.  What you could do is get rid of that event listener code and implement a Timer that calls the fl_nextSlide()  function.
    I do not know what to answer as far as making it into an avi or mov file.  My impression with creating video files from Flash files is that the design needs to be timeline-based for that to happen (meaning it needs to play frame-by-frame along the timeline).

  • Presentation strategy - viewing notes while projecting slides?

    I'm giving a presentation with a projector in a couple of weeks. I'd like to project the slides on the screen, but be able to view the notes for each slide on my computer. How do I configure Keynote to do this?
    Message was edited by: sw_i_t_t_e_rs

    AS you have discovered, the Keynote Preferences Slideshow menu will enable you to "Present on secondary display" - i.e. show your slideshow to your audience via the projector. While in this menu, check any (or all) of the other display options that work for you. (I strongly recommend the first four square boxes).
    Then, in the Presenter Display Preferences menu, be sure to check the box "Use alternate display to view presenter notes." This will put the presenter notes display onto your computer's monitor. I also recommend checking all of the options boxes - especially the "ready to advance indicator." This provides an excellent visual guide as to when Builds and Transitions have completed and the next "click" can be executed.
    The Edit Presenter Layout options allows you to arrange the various elements in the display to suit your own tastes.
    Good luck.

  • Need help to read model node input field attribute present in view - first time developer.

    Hello Experts,
    I am new to CRM Web UI development.
    Presently, I am trying to develop a Guided Activity Page having 2 views.
    First view has the field Business Partner Number, I have added model Node BuilHeader and the attribute BP_NUMBER while creation of the view.
    The Second View consists of 2 fields from the Model Node BuilHeader, namely First Name and Last Name.
    The requirement is to enter the BP Number on the first screen then click on the NEXT button from the Guided Activity buttons, on navigating to the Second View, the Names should auto-populate.
    I have Created both views and the GP page, the GP navigation is also happening. Initially the fields were showing Not Bound text in value, so I commented the line in GET_I and GET methods to enable the field and remove the Not Bound text. I have created a custom controller with BuilHeader
    I have tried doing this but facing the below problems :
    1) When I enter the BP number on the first view and press Enter, the value disappears. How to solve this ?
    2) Does clicking on the NEXT button on the GP Navigation trigger a Server Roundtrip ?
    3) How to read the context node value of BP Number entered on the first view and populate the Name fields on the second view.
    Please help.........

    you can take reference from from below code as in above case we use BuilHeaderAdvancedSearch search object, to get current entity.
    data:    query        TYPE REF TO cl_crm_bol_dquery_service,.
      query ?= me->typed_context->BuilHeaderAdvancedSearch->collection_wrapper->get_current( ).
    Do not remove code from getter setter of fields , it will not clear.
    Check with http://scn.sap.com/thread/3391203 , for basic understanding of UI.
    Regards,
    Harish Kumar

  • Handling nested folders in content presenter (carousel view)

    I can use the carousel view in the content presenter component to display images. That works great but only for that single folder. Can I "drill down"?
    Folder structure would be:
    - Photo Library
    -- holidays
    -- cars
    -- trees
    Users add images via document manager.
    Is it possible to "link" folders in document manager with the carousel view so if a user has the holiday folder open the carousel shows holiday images?

    yeah I have been putting in a suggestion every few months since the release of apple tv 2.
    still just a sad face for us who would find that useful.
    I keep hoping that the cycnical view is not correct - that they are only interested in updating the cash register part of streaming/rental/channels apple tv, not the user experience of the people who have been loyal customers for years and actually bought stuff.
    so sad.
    If I were not so lazy I would try and do more to push for this - there you go...we don't have it because I am too lazy.
    sorry people, my bad.

  • Configuring Mac Pro for presentation on two projectors + presenter's view

    I want to know how to order a Mac Pro that will support the presenter's monitor, and two audence video projectors for presentation. There are several graphic card options. Would the included graphic card do, or do I need to upgrade to another? When the discription says that it supports a dual DVI port, does that mean powerful enough to support a pigtailed dvi cable? For example:
    NVIDIA GeForce 7300 GT
    For excellent all-around performance in creative and productivity applications, choose one or more NVIDIA GeForce 7300 GT. It features a 256MB frame buffer and both a single-link DVI port and a dual-link DVI port, making it capable of simultaneously supporting one 23-inch and one 30-inch Apple Cinema Display.
    OR
    Would I just add another GeForce 7300 GT, which I'm assuming it means 2 X at the Mac store site.
    This computer will be replacing a lame Dell PC at church. It will need to display the presentor's view so that the operator can see his desktop and the program (Keynote), the audience sees the slides on the big screen, and the worship team and pastor can see what is on the screen behind them without turning around.

    You should be able to do this without a problem using a single card (7300 or x1900) without a problem as both have dual DVI ports (the single-link port should be fine for projector resolution). Plug one DVI port into the project and another into the presenter's display. Then go to Displays in System Preferences and set the displays to "mirror". This will mean that the same information will be displayed on both the display and projector simultaneously.
    Hmm. I just reread your question and saw that you're really talking about 3 displays (2 projectors, not 1 + the presenter's display). Don't know about a pigtailed DVI cable to split the image to 2 displays/projects. Someone out there would probably have an answer on this. If you cannot split the signal to 2 displays you'll definitely need to buy another card as there are only 2 physical ports on the 7300 (or x1900) card. The dual-link/single-link has to do with how the port is used where dual-link is needed for higher resolution displays, like the 30" Cinema Display. So, an additional 7300 should do the trick. I don't have experience configuring 3 displays using the System Preferences but with the 2 x 7300s you should be able to achieve what you're looking for. You should be able to have 2 displays mirror with a separate display for desktop/application, all 3 mirror, etc.
    DVI info: http://www.datapro.net/techinfo/dvi_info.html
    Message was edited by: JoshD

  • BiDi Text in Presentation Chart View

    I have a problem with viewing any text which is supposed to be right-to-left (I use Hebrew) in the chart view (which is built in flash).
    Every Hebrew text i have there (table data, column names etc) is reversed and I can't get it to show the correct way. On the text tables the text views the right way.
    I'm using BI 10.1.3.4 (btw does it have an alias?) and on the viewing computer I've got flash 8, maybe it has something to do with it. I also tried setting the NLS_LANG environment variable on the host computer to a Hebrew string, but that didn't change anything.
    Does anyone have any clue to what i can do with this?
    Thanks

    Hey guys,
    I found a solution to my problem, thought i would post it if anyone ever needs this
    In the OracleBIData\web\config\instanceconfig.xml file a setting needs to be added like this:
    <Charts>
    <Bidi>True</Bidi>
    </Charts>
    Enjoy

  • PowerPoint Presentation View

    Simple Request:
    1. Show PowerPoint Presentation to attendees
    2. Presenter sees all connect pods including powerpoint
    screen.
    3. Presenter advances each slide while viewing pods.
    Help appreciated.

    Solution,
    Use share pod to share PPT.
    Option 2
    Have dual monitors and have the Connect Room in one and your
    PPT in the other.
    Jorma@RealEyes

  • Figures show up pixelated in presentation viewed with Adobe reader

    I am working on a presentation which I am making in beamer (latex). Since I am including animations and hyperlinks to sounds, I am using Adobe reader 9 for unix on Lubuntu. Everything is working fine except for one strange thing:
    - The fonts and labels on the figures I am using appear extremely pixelated in the presentation pdf (viewed with Adobe reader) even though if I open them individually, they look fine.
    - If I open the presentation pdf with evince, there is no such problem and the figures look fine. But since animations dont show in evince, I have to use Adobe reader
    Apparently this is an Adobe reader problem. I tried meddling with the settings a bit (pixels per inch, smoothen lines...) but with no success. I have no idea why this is happening, but it is quite terrible for me.

    As a follow to the above, the problem was related to a file transfer.  The PDFs in question were being transfered from a Unix platform to a Windows Server.  The transfer was defaulting to ASCII or Text and not binary.  Apparently this was never an issue with older versions of Adobe Reader.  Once the transfer was switched to binary, Reader X was able to view the files with no missing pages.  Something was being stripped from the file that Reader X just didn't like.

  • Presenter View During Live Events In Show and Share

    Hi,
    I am a bit confused about the user authorisation during live events of Show and Share. There is a user who is creating the event and publishing it. I think this user should be the moderator. He can see the questions tab and check the questions coming from the other participants and send them to the presenter view tab.
    I have found some information about the moderator and presenter in the user guide for show and share but I could not find out which user can be a presenter, or are the presenter and the moderator the same user or not.
    Below is from user guide:
    The live event moderator pre-screens these incoming questions and comments as they arrive. Moderators can:
    • Move any high-priority questions to the Presenter’s View tab. • Move any low-priority questions to the Removed Questions tab, either manually or automatically by keyword. • Use keyword filters to see and manage only the messages that match those keywords.
    . The presenter then responds to any number of these pre-screened questions and comments. (These are messages that the moderator moved to the Presenter’s View tab.)
    From the above information, it seems that there are seperate presenter and moderator, but is there a way to assign a user other than moderator only the presenter rights?

    Great question, Ken!  I too would like to know if there is a way to transfer video content management to an other author.  In the case that a user publishes content and later leaves the company, retaining control of the published material is a requirement.

  • View on DB Table

    I want to create a view on DB Table eg CSKS. Can anyone show me how to do this or Show me where I can find information to create view on DB Table.
    Thanks.

    hi anil,
    In database theory, a view is a virtual or logical table composed of the result set of a query. Unlike ordinary tables (base tables) in a relational database, a view is not part of the physical schema: it is a dynamic, virtual table computed or collated from data in the database. Changing the data in a table alters the data shown in the view.
    The result of a view is stored in a permanent table whereas the result of a query is displayed in a temporary table.
    Views can provide advantages over tables;
    They can subset the data contained in a table
    They can join and simplify multiple tables into a single virtual table
    Views can act as aggregated tables, where aggregated data (sum, average etc.) are calculated and presented as part of the data
    Views can hide the complexity of data, for example a view could appear as Sales2000 or Sales2001, transparently partitioning the actual underlying table
    Views take very little space to store; only the definition is stored, not a copy of all the data they present
    Depending on the SQL engine used, views can provide extra security.
    Views can limit the exposure to which a table or tables are exposed to the outer world
    Just like functions (in programming) provide abstraction, views can be used to create abstraction. Also, just like functions, views can be nested, thus one view can aggregate data from other views. Without the use of views it would be much harder to normalise databases above second normal form. Views can make it easier to create lossless join decomposition.
    Rows available through a view are not sorted. A view is a relational table, and the relational model states that a table is a set of rows. Since sets are not sorted - per definition - the rows in a view are not ordered either. Therefore, an ORDER BY clause in the view definition is meaningless and the SQL standard (SQL:2003) does not allow this for the subselect in a CREATE VIEW statement.
    Read-only vs. updatable views
    Views can be read-only or updatable. If the database system is able to determine the reverse mapping from the view schema to the schema of the underlying base tables, then the view is updatable. INSERT, UPDATE, and DELETE operations can be performed on updatable views. Read-only views do not support such operations because the DBMS is not able to map the changes to the underlying base tables.
    Some systems support the definition of INSTEAD OF triggers on views. This technique allows the definition of logic that shall be executed instead of an insert, update, or delete operation on the views. Thus, data modifications on read-only views can be implemented. However, an INSTEAD OF trigger does not change the read-only or updatable property of the view itself.
    Advanced view features
    Various database management systems have extended the views from read-only subsets of data. The Oracle database introduced the concept of materialized views, which are pre-executed, non-virtual views commonly used in data warehousing. They are a static snapshot of the data and may include data from remote sources. The accuracy of a materialized view depends on the frequency or trigger mechanisms behind its updates. DB2 provides so-called materialized query tables (MQTs) for the same purpose. Microsoft SQL Server, introduced in the 2000 version, indexed views which only store a separate index from the table, but not the entire data.
    Equivalency:
    A view is equivalent to its source query. When queries are run against views, the query is modified. For example, if there exists a view named Accounts_view and the content is:
    accounts view:
    SELECT name,
           money_received,
           money_sent,
           (money_received - money_sent) AS balance,
           address,
      FROM table_customers c
      JOIN accounts_table a
        ON a.customerid = c.customer_id
    The application would simply run a simple query such as:
    Sample query
    SELECT name,
           balance
      FROM accounts_view
    The RDBMS then takes the simple query, replaces the equivalent view, then sends the following to the optimiser:
    Preprocessed query:
    SELECT name,
           balance
      FROM (SELECT name,
                   money_received,
                   money_sent,
                   (money_received - money_sent) AS balance,
                   address,
              FROM table_customers c JOIN accounts_table a
                   ON a.customerid = c.customer_id        )
    From this point on the optimizer takes the query, removes unnecessary complexity (i.e. it is not necessary to read the address, since the parent invocation does not make use of it) and then sends the query to the SQL engine for processing.
    thanks
    karthik
    reawrd me if usefull

  • Photoshop/Bridge CS4 PDF Presentation Update or Plug-in

    Full Parameter PDF Presentation is essential for me.
    PDF Presentation (as in Photoshop - Bridge CS2 and CS3) with panels for selection of presentation prameters and saving with various levels of jpeg compression and image quality, presets and output color conversion, etc. . This was not only a very useful feature, but has become a required component of my workflow over the past three years. This to shoot all imaages in RAW, upload files to Bridge, develop a wide range of selected images with Camera RAW and then produce a PDF slide show of 20-25 'proofs' while still in Bridge with a size of 10-15MB that can be emailed to various recipients for review and final selection. Final selections are then fine truned in Photoshop for printing. While some of the improvements in CS4 are useful, CS3 at present is more satisfactory and remains more useful than the CS4 upgrade. Addition of this feature as an update or legacy plug-in (the basic componets exist in CS4) would be more than acceoptable and allow me to complete the upgrade to CS4. Your attention and help will be very much appreciaated!

    APOLOGIES!!!
    I just found it......
    Using the Adobe Output Module script, you can create Adobe PDF contact sheets and presentations in Adobe Bridge. Contact sheets let you easily preview and catalog groups of images by displaying a series of thumbnails on a single page. PDF presentations let you use a variety of images to create a multipage document for slide show presentation. You can set options for image quality in the PDF, specify security settings, and set the document to open automatically in full-screen mode in Adobe Acrobat. You can also add the filename as a text overlay below each image in the PDF.
    1. Select the files or the collection or folder that contains the images you want to include in the contact sheet or presentation.
    2. Choose Window > Workspace > Output.
    If the Output workspace is not listed, select Adobe Output Module in Startup Scripts preferences.
    Adobe Bridge displays the Output panel at the right side of the window and the Folders panel at the left. The Content panel with your selected photos appears at the bottom of the window, and the Preview panel appears in the middle.
    3. In the Output panel, select PDF.
    4. Choose a layout option from the Template menu.
    5. With your photos selected in the Content panel, click Refresh Preview to view the contact sheet in the Output Preview panel.
    Note: The Output Preview panel displays only one PDF page.
    6. Customize the appearance of the contact sheet by specifying options in the Document, Layout, Overlays, and Watermark areas of the Output panel.
    7. (Optional) Change the images in the PDF by navigating to them in the Folders or Favorites panel, and then selecting them in the Content panel. You can also use the Preview panel to preview the images and refine your selection. Drag thumbnails in the Content panel to rearrange the order of the images on the page.
    8. Click Refresh Preview at any time to update the PDF and see the changes in the Output Preview panel.
    9. For presentations, specify the following options in the Playback panel:
    Open In Full Screen Mode
    Opens the PDF in full-screen mode in Adobe Acrobat.
    Advance Every [x] Seconds
    Specifies how long each image is displayed before the presentation advances to the next image. The default duration is 5 seconds.
    Loop After Last Page
    Specifies that the presentation automatically starts over after reaching the end. Deselect this option to stop the presentation after the final image is displayed.
    Transition
    Specifies the transition when moving from one image to the next. Choose a transition from the Transition menu. Depending on the transition, you can also specify a Direction and a Speed.
    10. If youd like to automatically open the PDF in Acrobat after you save it, select View PDF After Save at the bottom of the Output panel. Otherwise, just click Save.
    11. In the Save (Windows) or Save As (Mac OS) dialog box, enter a name for the PDF, select a destination for the saved file, and then click Save.

  • Secoundary viewer

    sorry i am not a english speaker so the question may seems silly
    viewer / secoundary viewer
    viewer / main viewer
    i just don't know the difference between all these show one, three up, aternate
    i did check them and press them, but it all do the same thing whitch is show the same picturte in both screen
    here is what i want to do
    1.i want to show the masters in main screen and versions in secoundary screen
    2.i want to show alternates, eg 3 pictures in main screen and check each one of them in secoundary
    thank you!

    Keep experimenting -- it should eventually make sense.
    First, make sure that you do not have "Mirror Displays" checked in "System Preferences→Displays→Arrangement".
    Note, in System Preferences, which display holds the OS Menu Bar.  This is your Primary Display.
    Aperture (in English -- don't know about othe languages) refers to your Primary Display as the "Main Viewer".  The other monitor is refered to as your "Secondary Viewer".  (All this from 3.2.2 on 10.6.8.)  The reason for the substitution of "Viewer" for "Display" is that the Viewer allows for different viewing modes.  The Browser does not.
    There are five Viewer modes for the Main Viewer:
    . Show Multiple
    . Show One
    . Three-up
    . Compare
    . Stack
    Show Multiple is the most used.  This will show all of the selected Images (up to 11, after which you get a notice telling you how many more images are included in the selection but not shown).  It is possible to use Aperture well and never use any of the other Viewer modes.
    Show One shows just the Primary Selection (the current selection among multible selected Images -- it has a thicker border than the others). The only use I've found for this -- and it is _very_ useful here -- is to show a single Image from among a selection of Images that I don't want to lose.  I will toggle between "Show Multiple" and "Show One" when reviewing a selected sub-set of Images.  Other than that I haven't had nor thought of any use for "Show One".  (Note that "Edit→Reduce Selection" also changes the number of Images shown in the Viewer from many to one, but it can't be reversed {there is no "Undo" for that command}.)  I used to make a temporary Album whenI wanted to view individual Images from a selection -- until I found the "Show One" Viewer mode.
    Three-up doesn't make sense with (and mostly doesn't work with) any selection except a single Image.  It shows (in the Viewer) the currently selected Image, and the Images immediately preceeding and following it in the Browser.  (It is similar to the Browser Filmstrip mode, except it shows only three consecutive Images, of which only one can be selected.)  This view can be very useful for "walking" through the Images in a container, and especially when making similar or identical adjustment changes to Images (e.g.: crop, go to next Image and see the effect of the crop on the Image you just cropped, and so on through an entire container).  For me, Three-up mode is good for "processing" work.
    Compare and Stack modes are more specific and more advanced.  The User Manual should be consulted prior to using them.
    So those are the Viewer modes.  You also want to know about setting up dual displays.
    The Secondary Display shows _only_ a Viewer (never a Browser).  Apple's implementation of this is very good -- but the menu items used to control it are poorly named, and the menu system is poor.  You are right to have found it confusing.  The five menu choices for the Secondary Viewer are:
    . Mirror
    . Alternate
    . Span
    . Black
    . Off
    "Off" means that Aperture will display nothing on that monitor -- you will see whatever the OS has put there.
    "Black" blanks the Secondary display.  This is useful when you don't want anything to show on that monitor.
    "Span" creates on giant _single_ workspace of the two displays.  My displays are very different in size.  I don't ever use "Span".
    "Alternate" is the most useful.  In general, I recommend setting this and leaving it there.  It presents a Viewer showing whatever is selected in the Browser shown on the Primary Display.  This gets _even more_ confusing, because the mode of the Viewer shown on the Secondary Display is taken from the Viewer mode set on the Primary Display and cannot be changed except when in Viewer mode on the Primary Display.  When you want to change the Viewer mode of the Secondary Viewer, you must enter Viewer mode on the Primary Viewer and change it from there.  This will immediately change the mode of the Secondary Viewer.  "Show Multiple" is the most useful mode when using dual displays -- I recommend setting this and keeping it there until you are fully confortable with the dual-monitor interface.
    "Mirror" provides no utility not found in "Alternate".  I never use it.
    For a dual display set-up of Aperture, then, this is my recommendation (at least to start):
    . Make sure "Mirror" is turned off in System Prefs
    . Put your OS Menu Bar on the monitor you want to display the Aperture Browser.  The other display will show the Aperture Viewer.  (One Browser and one Viewer is the standard dual-monitor set-up.)
    . In Aperture, set the Main Viewer to "Show Multiple".
    . In Aperture, set the Secondary Viewer to "Alternate".
    Experiment.
    HTH.
    Kirby.

  • How to create a view for all Service Requests that are not approved by reviewer

    Hallo,
    I want to create a view in the Service Requests library that shows all SRs that are not approved. How to configure condition that says: if a SR has related Review Activity which is In Progress, show that SRs?
    I couldn't find this when creating the view. Thank you.

    So here's the first problem with that: Which review activity? a SR can contain multiple RAs, so how do we decide if an arbitrary SR is approved or not? 
    As to the specific language you use (Any child RA is In Progress) you might want to look at the criteria from the default Change approval view, which does something similar: 
    <QueryCriteria Adapter="omsdk://Adapters/Criteria" xmlns="http://tempuri.org/Criteria.xsd">
    <Criteria>
    <FreeformCriteria>
    <Freeform>
    <Criteria xmlns="http://Microsoft.EnterpriseManagement.Core.Criteria/">
    <Expression>
    <And>
    <Expression>
    <SimpleExpression>
    <ValueExpressionLeft>
    <Property>$Context/Path[Relationship='CoreActivity!System.WorkItemContainsActivity' TypeConstraint='CoreActivity!System.WorkItem.Activity.ReviewActivity']/Property[Type='CoreActivity!System.WorkItem.Activity']/Status$</Property>
    </ValueExpressionLeft>
    <Operator>Equal</Operator>
    <ValueExpressionRight>
    <Value>$MPElement[Name="CoreActivity!ActivityStatusEnum.Active"]$</Value>
    </ValueExpressionRight>
    </SimpleExpression>
    </Expression>
    <Expression>
    <SimpleExpression>
    <ValueExpressionLeft>
    <Property>$Context/Property[Type='CoreChange!System.WorkItem.ChangeRequest']/Status$</Property>
    </ValueExpressionLeft>
    <Operator>Equal</Operator>
    <ValueExpressionRight>
    <Value>$MPElement[Name="CoreChange!ChangeStatusEnum.InProgress"]$</Value>
    </ValueExpressionRight>
    </SimpleExpression>
    </Expression>
    </And>
    </Expression>
    </Criteria>
    </Freeform>
    </FreeformCriteria>
    </Criteria>
    </QueryCriteria>
    This is a simple AND criteria with two componets. one looking for a Review Activity (TypeConstraint='CoreActivity!System.WorkItem.Activity.ReviewActivity') which is related to the targetting CR by Contains Activity ($Context/Path[Relationship='CoreActivity!System.WorkItemContainsActivity';
    Context in this... context means the CR targeted by the view) where it's status (/Property[Type='CoreActivity!System.WorkItem.Activity']/Status$) is In Progress ($MPElement[Name="CoreActivity!ActivityStatusEnum.Active"]$). The other is filtering
    for the target change request's status ( $Context/Property[Type='CoreChange!System.WorkItem.ChangeRequest']/Status$) is In Progress ($MPElement[Name="CoreChange!ChangeStatusEnum.InProgress"]$). 
    You could convert the second criteria to point to SRs and SR status values, and then use the similar text for the first criteria. i'd recommend
    Anton's Advanced View Editor (or
    the free version) to do the criteria adjustment. 

Maybe you are looking for

  • How to send a mail with copy to some other receipients thorugh Workflow

    Hi, I need to send a mail to one Recipient and also copy some other Recipients throught workflow. I've set up a mail step in my workflow and that sends a mail perfectly. But is there a way to add CC to that step so that when the Recipients get a mail

  • Using h:outputlink with rendered attribute

    Hey, I wanna know how to use the rendered tag with h:outputlink. I have a variable called requestNumber in the request entity bean. Now, I dont want the link to show up when the requestNumber is =="To be set". How can this be done? This is the code i

  • 8/29/2013 - AIR 3.8 Runtime and SDK

    Today we are excited to announce the availability of the released version of AIR 3.8 and encourage you to download, use, and provide us feedback. This update includes the following new features and changes: Notable bug fixes: SWF content loaded with

  • Cost questions

    Dear SDN ! I am a newbie learning how to support CO in R/3. I hope you can help me. 1. Cost Element vs WBS element vs Internal Orders. My understanding is Cost element is a  GL account, WBS element is related to a project and Internal orders is also

  • Safari and Private Browsing

    Is there a way to turn on private browsing permanently? I check my bank account every few days because I make a lot of transactions. It's annoying to have to click Private Browsing and then OK every time I do it. Clearly, Safari doesn't have a built