Can you default a detailed navigation folder to an "open" state?

We have a workset containing iViews, and the detailed navigation on the left displays the iViews within a folder as we would like.  However, the folder defaults to being closed, thus making the user click twice to arrive at an iView inside.  Is there a way to default that folder to being open?

Hi Kris,
Its is not possible to have a folder expanded by default when you have all other parallel folders are closed.
Either you can expand only the root folder on DLN or expand all the folders. Expanding all the folder option would need DLN .par customization.
Set the below settings to open launched folder:
Go to Your current Framework Page -> Desktop inner page -> Open Detailed Navigation iView and set the property ->  Open Folder when Launched as yes.
Initial State of Navigation Panel option shall expand/close the entire DLN.
Ram

Similar Messages

  • Can you provide a detailed description of how to set up the Websites portion of 10.9 server to work with AUSST?

    I've followed the instructions but can't get the ausst-server.local site to appear in my browser.

    Steve,
    Can you give more details about the error message and describe your setup when you receive them? Also, here is a great article on different synchronization options with HSDIO devices. This should answer some of your questions.
    Synchronization with a High Speed Digital Input/Output (HSDIO) Board
    http://digital.ni.com/public.nsf/allkb/75B38521EED​DA0DC86257114005DCA37?OpenDocument
    Regards,
    Chris Delvizis
    National Instruments

  • Can you create a password protected folder in os x mountain lion to keep sensitive info?

    Can you create a password protected folder, different than the login password, in mountain lion to stor sensitive info?

    Click here and follow the instructions. Don't add the encrypted image's password to the keychain.
    (88679)

  • Can you have two detail lists from the basic list at the same time?

    Hi
    Can you have two detail lists from the basic list at the same time?
    If yes how and if no why?
    Thanks
    Venkat

    No   ... it is not   possible   of   2 detail  list at   one time   from the basic  list ...
    you can  increament   the SY-LSIND  .... But you can not   display  both the windows   at single time  ...
    it is  possible  to  display  2 Detail list  in ALV   ......  from one  basic  list   using  the  Blocked  list  concept    .
    Sample Program on BLOCK LISTS
    Report   zblock_list
    * Declarations for BLOCK ALV DISPLAY
    *--type pools
    TYPE-POOLS:slis.
    DATA:x_layout TYPE slis_layout_alv,
    t_field TYPE slis_t_fieldcat_alv,
    *--field catalog
    x_fldcat LIKE LINE OF t_field,
    *--to hold all the events
    t_events TYPE slis_t_event,
    x_events TYPE slis_alv_event,
    t_sort TYPE slis_t_sortinfo_alv,
    x_sort LIKE LINE OF t_sort ,
    *--Print Layout
    x_print_layout TYPE slis_print_alv.
    *----Macro to add field catalog.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    DEFINE add_catalog.
    clear x_fldcat.
    x_fldcat-fieldname = &1.
    x_fldcat-seltext_m = &2.
    x_fldcat-outputlen = &3.
    x_fldcat-tech = &4.
    x_fldcat-col_pos = &5.
    x_fldcat-no_zero = 'X'.
    x_fldcat-ddictxt = 'M'.
    x_fldcat-datatype = &6.
    x_fldcat-ddic_outputlen = &7.
    if &6 = 'N'.
    x_fldcat-lzero = 'X'.
    endif.
    *--build field catalog
    append x_fldcat to t_field.
    END-OF-DEFINITION.
    *----- data declerations.
    data: v_repid like sy-repid.
    data: begin of itab occurs 0,
    matnr like mara-matnr,
    ernam like mara-ernam,
    meins like mara-meins,
    end of itab.
    data: begin of jtab occurs 0,
    matnr like makt-matnr,
    maktx like makt-maktx,
    end of jtab.
    select matnr ernam meins
    up to 20 rows
    from mara
    into table itab.
    select matnr maktx
    up to 20 rows
    from makt
    into table jtab.
    v_repid = sy-repid.
    *DISPLAY alv
    * Initialize Block
    call function 'REUSE_ALV_BLOCK_LIST_INIT'
    exporting
    i_callback_program = v_repid.
    *Block 1:
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '18' '' '1' 'C' '18',
    'ERNAM' 'Created By' '12' '' '2' 'C' '12',
    'MEINS' 'Unit' '5' '' '3' 'C' '3'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST1'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'ITAB'
    it_events = t_events
    it_sort = t_sort
    tables
    t_outtab = itab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--BLOCK 2(SUMMARY REPORT)
    *INITIALIZE
    refresh t_field. clear t_field.
    refresh t_events.
    *field "text "length "tech "COL_POS "DATATYPE "DDIC_OUTPUTLEN
    add_catalog:
    'MATNR' 'Material' '20' '' '1' 'C' '18',
    'MAKTX' 'Description' '40' '' '2' 'C' '40'.
    *--build table for events.
    x_events-form = 'TOP_OF_LIST2'.
    x_events-name = slis_ev_top_of_list.
    append x_events to t_events.
    * Append table block.
    call function 'REUSE_ALV_BLOCK_LIST_APPEND'
    exporting
    is_layout = x_layout
    it_fieldcat = t_field
    i_tabname = 'JTAB'
    it_events = t_events
    tables
    t_outtab = jtab
    exceptions
    program_error = 1
    maximum_of_appends_reached = 2
    others = 3.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    *--CALL FM TO DISPLAY THE BLOCK REPORT.
    call function 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    * exporting
    * is_print = x_print_layout
    exceptions
    program_error = 1
    others = 2.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    form top_of_list1.
    skip 1.
    write: 10 'List 1',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    form top_of_list2.
    skip 1.
    write: 10 'List 2',
    /5 '--------------------'.
    skip 1.
    format reset.
    endform.
    reward  points if it is  usefull ....
    Girish

  • KM Doc iView-How the content can be displayed in detailed navigation area

    Hi Experts,
    I have doubt related with KM Document iView.
    I have created a HTML page in KM, which will hold 2 links. Give names to these links and href as follows.
    Link1: http://<host>:<port>/irj/portal/*
    Link2: http://<host>:<port>/irj/portal/*
    I have created KM Document iView (ABC) and provided path to document of above HTML page.
    Then I opened my role, created folder inside, and added KM Document iView (ABC). Then I opened the properties of this iView in role and change the property, Initial state as Open,
    I had then expected that the KM document iView (ABC) content Link1 and Link2 to appear in detail navigation area.
    It is not happening. Can you please let me know what is going wrong here
    In other words can you please let me know how I can ensure that
    Link1 Link2 should appear in detailed navigation area side by side.
    Thanks

    Hi Frank,
    Thanks. But this has already been implemented in one project. I have seen this. In that project the detailed navigation area looks like as shown below. The image link and iview link appear in one line
    'jpg image1' 'iviewLink1'
    'jpg image2' 'iviewLink2'
    'jpg image3' 'iviewLink3'
    'jpg image4' 'iviewLink4'
    When the user clicks on jpg image, one iview gets open. When user clicks on iview link other iview gets open.
    I tried a lot. But, I am unable to do this.
    Can it be done using custom PAR file or Visual composer?
    Will appreciate if you can help.
    Thanks
    Brian

  • Can you move Photos from one folder into another?

    Doesnt seem like you can.
    Can you?
    And can you create new folders on the Finder level within LR like you can in Bridge?

    You can when inside a folder. Drag from the image not the grey border. If in doubt grab the center if the image.

  • In MM03, can you default "document data" tab to "Current Version" ?

    I am in MM03, under "Additional Data" on "Document Data" tab.  Can I default the radio button here to "Current Verson" instead of  "All versions"?
    thanks.

    Hello all,
    I have a similar question - I have one notification type where the users want the "All Versions" to be the default for the Documents Tab.  However, there are other notification types where the users always want the 'Current Version' selection.  And the document types are available for use on many different notification types.
    Does anyone know if this "All Versions" radio button can be controlled at the Document Tab for the Notifications rather than at each Document Type.
    Thanks in Advance,
    Bill Pickett

  • Exchange 2010 SP3 - How many Calendar Items/Folders can you create under "all public folder"

    Hi,
    Is there a limitation on how many calendar items/folders you can create under "all public folder" in Exchange 2010 SP3?
    Thank you

    I don't believe you can create calendar items under the root folder, but it's been so long since I worked with a system that had public folders that I'm not sure.  If you mean "a folder that can contain calendar items", that is not a calendar
    item itself.
    Now, I believe your underlying question is, "How many folders can be created at the root level of the public folder hierarchy?"  If so, there is no simple limit that I know of (you can have thousands, if you really want), but management gets
    pretty unruly with the more that you have.  I normally recommend that you create sub-folders to logically meet your requirements, then have each of these with more folders (normally that only specific groups of users will be able to access or add items
    to).  And anyone will tell you that you want to restrict anyone from creating their own folders at the root level.  In fact, this is the default setting for a new Exchange 2010 installation.
    I'll add that you really should stop trying to use public folders, since there are newer technologies (SharePoint, for instance) that work much better and are much easier to use.

  • PSE12 Organizer - can you copy photo from one folder to another and import copy into Organizer and still have original in other folder

    I have been using folders to organize all my pictures and I will copy photos from folder to folder, often having them in 2 or 3 folders based on use.  I tried to copy a photo in Organizer PSE12 from one folder to another and you can only move it, that means I can only have one copy of the photo.  That is fine if I am using tags and want to search for it, but I want to have mult copies in mult folders. Organizer will recognize that it is there but it won't import it into the new folder. Until I move it, it stays in the original folder.  I can drag it out of Organizer and drop (copy) it into a new folder fine, but it won't show in organizer in the new folder.  Is there any way to copy and have multiple copies show up in multiple folders?

    Hi,
    The organizer works on the principle of not having multiple copies of the same photo.
    If you have multiple copies spread in different folders, then making changes to one doesn't affect the others. The use of tags and albums are there to give different views of your photos.
    You can't have multiple copies with exactly the same name even if they are in different folders. You could select a photo and duplicate it (File -> Duplicate) and then move the copy into a different folder but the name will be different.
    If you want different folders for a specific reason, it is possible to use albums to collect the group of photos and then export them to a new folder outside of the organizer. You can also rename on export which is useful if you want to arrange the photos in a specific order.
    Hope that helps a bit.
    Brian

  • Can you change and save navigation buttons in free adober reader XI?

    Using Windows 8 and Adobe Reader XI.  Can't seem to save changes to navigation buttons i've added so they show for every document i open.  
    I went into edit/preferences/documents/ checked "Restore last view settings" but still won't save.

    Used to be able to in previous versions. Do you know which version and can I revert back to that version?
    Sandy Kleinhenz
    [signature deleted by host]

  • Can you create master-detail output using a PDF template?

    My starting point is a pre-designed PDF template for producing purchase orders. This has a fixed background containing graphics and text. Over this I have overlaid the required fields and in the PO line section have defined a repeating group.
    This works correctly only if the XML input file contains one and only one PO. If I want to produce multiple PO's (and I do) then is there a way to nest the repeating groups so that for each PO a new header is printed followed by the lines, i.e. a standard master-detail report? This is promised in the "XML Publisher Business Applications" powerpoint :-)
    I know this can be done using an RTF template, but I have not found a way of fixing the positions of all the boilerplate text/graphics, as required, using Word. (The final section, which contains additional "header" information gets pushed down the page as PO lines are added.)
    Any help gratefully received.

    That depends.
    Are they asking you to put a copy of your actual signature on there or are they asking for a "digital signature"?
    They are different things.

  • Can you create a password protected folder in your bookmarks in safari

    When I open my "Popular" bookmarks folder, can I create a folder within it that is password protected (in other words you have to enter a password to open that folder and see the bookmarks within)?

    Hello:
    I do not know of a way to protect a single file.  However, you could consider encrypting your disk.  In that way, one would need your password to read any data:
    http://docs.info.apple.com/article.html?path=Mac/10.7/en/mh11785.html
    Barry

  • Can you move the windows installer folder using junctions?

    I have been reading blogs and articles for quite some time now relating to the controversy between what many users see as wasted disk space for windows installer cache and Microsoft techies who claim that cleaning this folder can cause irreparable system
    damage.
    my question has anyone ever simply tried moving this folder to another drive and than linking it to the windows folder using a junction?? I have never tested this myself but in theory it should work as you could keep the folder on an external storage device
    which would be accessed only when installing or uninstalling a program. from experience the os doesn't generally know the difference between the actual folder and a junction point so the required directory structure for all intents and purposes would technically
    be there.
    if anyone has ever done this successfully please let me know what your results were ?

    Hi Mike,
    Based on my knowledge, you can move windows installer directory using junctions. Please follow the steps below.
    Download Junction from
    http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx.
    CopyC:\windows\installer to X:\installer (X represents a new location).
    Delete all the file in C:\windows \installer.
    Close all Explorer windows.
    Run>cmd>C:\junction C:\windows\installer X:\installer.
    Thanks!
    Andy Altmann
    TechNet Community Support
    I tried this on my Windows XP SP3: moved C:\WINDOWS\Installer folder to other partition (E:\Installer) following steps described here. After this I've launched an ordinary MSI file to install an application. During installation
    Windows Installer deleted all contents of E:\Installer and re-created C:\WINDOWS\Installer as a folder (not a junction).
    Hope it works correctly for Windows 7...

  • Can you use GPS and Navigation on a 5230 without a...

    Hi all,
    I'm just wondering if you can use the Maps software on a 5230 without a SIM card. It works perfectly well with one, but the sim I will use in this phone does not have a data package, so I don't want to use Maps if I can only get GPS data in conjunction with a data connection.
    Could someone please advise?
    Thank you!
    John.

    Hi GarfordJB
    Yes you can as just put my 5230 into "Offline" profile, but bear in mind that takes longer to lock on to position as totally dependent upon Integrated GPS.
    You would need to go to Menu > Applications > Location > Positioning > Positioning methods and disable all except "Integrated GPS" as per screenshot here:http://i50.tinypic.com/2lk4g1w.jpg
    In Maps application click on "spanner" icon bottom left of screen > Internet and set "Connection" to "Offline"
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Can you disable the DPS navigation menu?

    I have a project where i have to create a doument with  all the bells and whistles of DPS for iPads. I've got to be able to navigate through buttons, have video and slideshows, different length pages, etc.  The thing is, the document is not meant to be published, but rather ran on several iPads at tradeshows. Indesign and DPS are the perfect solution except for the navigation menu (the home button on the iPad will be covered by an encasement). Is there any work around to disable the navigation menu (home, previous page, TOC...)? Can anyone recomend any other solution to this problem?
    thanks in advance for any help!

    Hi Johnnes -- This was not my question ... but I'd appreciate your help with
    this question that I've posted in several forums with no answer:
    As of cs5.5, I can't get a multi-state object to stay on the same state when the
    ipad is rotated unless I use buttons with "go to next state"selected. When
    "swipe" is selected in the Overlay panel OR when I'm changing states with
    individual invisible buttons, such as in a timeline, the MSO reverts to the
    first state when rotated.
    This worked fine in my previously published apps. Is it a software issue? I need
    a new procedure? Viewer builder bug? Yes, the MSO has the same name and Links
    file.
    Help! Thanks, Beth

Maybe you are looking for

  • Screen Flicker on one side

    Hi, I use an HP  Mini 210-1099.TU. It has served me very well so far but since a few days the right side of the screen doesnt stop fickering. I have tried system restore to an earlier date and taken all steps as advised by 'Windows Help' regarding br

  • I no longer see my CD-ROM/DVD at My Computer. How do I fix this?

    I started Regedit and I see the CD ROM and I see {4D36E965-E325-11CE-BFC1-08002BE10318}, but do not see upper nor lower limits in the right pane. I checked Device manager and I see the WDC WD2500 BEVS -60UST0 ATA Device. Would you advise me? Thanks

  • Mail application

    when i opened the mail application, there was this spam letter. (I get junk mail a lot.) However, i just set up the mail application. And this one email i received was in yellow, and there is a strange symbol. what does this mean? Please Help me!! Ma

  • Invoice List Billing date is incorrect

    Hi Gurus! I have a problem. when we try to create an invoice list, the billing date is always the same date, no matter what date we create the invoice list. yesterday jan 18 we created an invoice list and the billing date is always june 23 2006. i ha

  • How to customise the URL on endsession button and point it to a third-party Application?

    Hello , I have a scenario where i want to redirect to a third-party application instead of OPA summary screen on hitting the close-->end session button. How to customize the URL behind the end session button to point to the third-party URL? Thanks, C