Scrollbars for dynamic and detail navigation

Hi,
When I add an iView to the dynamic navigation, big scrollbars appear horizontally and vertically over the detail and dynamic navigation iviews.Is it possible to deactivate these scrollbars? My dynamic navigation iView already have a scrollbar...
Thanks
Renaud

Hi Renaud,
see http://help.sap.com/saphelp_ep60sp2/helpdata/en/32/66c53e5ae84d3be10000000a11405a/frameset.htm - maximum size.
Hope it helps
Detlev

Similar Messages

  • File content conversion - sender adapter for Header and detail records

    Hi Experts,
                     I am receiving a field of fixed length content format.(Header)The first line of the file will follow the structure X having some fields and (DetailRecord)subsequent lines in the file will follow structure Y having somes fields.There is no record identifier for Header and Detail records.In one file first line is Header records and remaining subsequent line is DetailRecord.What are the parameters we have to set for sender file content conversion parameters as i donot have any key field and key field value.And in one file we have only one header records ( first line) and n number of detail records from 2nd line onwards.
    Thanks
    Deepak

    Hi
    Refer the below fourm link,
    Flat file whitout id
    Regards
    Ramg.

  • Dynamically generated Detailed navigation and related link

    Where is the Detailed navigation and related link configured for the ESS/MSS.
    Is it done in the Homepage Framework  configuration?
    I could see different navigation and related links for different worksets within ESS/MSS getting called dynamically. Where is this configured.

    Where is the Detailed navigation and related link configured for the ESS/MSS.
    Is it done in the Homepage Framework configuration?
    I could see different navigation and related links for different worksets within ESS/MSS getting called dynamically. Where is this configured.
    Hello Sir,
    If you haven't made it at this point, this is indeed done via the Home Page Framework via the backend on the following IMG PATH:
    > Cross-Application Components
      >  Homepage Framework
    1. You make a resource available via the Role (via PCD)
    2. You customize every other part as a cascade:
    Define Area group / Headers
      -> Define Areas / Assign Area to Area Group
         -> Define Subareas / Assign subarea to Area
             -> Define Services / Assign Services to Subarea.
    Hope I have clarified.
    Regards,
    Bentow.

  • Use different Layouts for Summary and Details in Drill down report

    Hi All,
    I have a 2 level drill down report in ALV.
    The summary report has certain fields and the Detail report has different fields. Now my problem is that when i use a default layout (with all fields of summary report) for the summary report, and drill down to the detail report i'm missing the fields on detail that are not in Summary. And if i save the default layout as default (with all fields of Detail) and go back to sumary, I'm missing the some other fields on summary (which are not on detail report).
    Is there a way to make different default layouts for each of those summary and detail reports:
    Also as the layouts are choosen by the user, i cannot hardcode any particular layout;
    So if the user chooses a layout for detail; it has to stay the same layout for the detail report if he goes to summary and then back to detail; unless the user changes the layout again.
    I'm using two different Layout types for each report. but i still cannot get the desired effect.
    Data:
          gt_layout_s             type slis_layout_alv,
          gt_layout_d             type slis_layout_alv,
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program       = g_repid
          is_layout                = <b>gt_layout_s</b>
          i_callback_top_of_page   = g_top_of_page
          i_callback_user_command  = g_user_command
          i_callback_pf_status_set = g_status
          i_save                   = g_save
          is_variant               = gs_variant
          it_fieldcat              = gt_fieldcat[]
          it_events                = gt_events[]
        importing
          es_exit_caused_by_user   = gs_exit_caused_by_user
        tables
          t_outtab                 = it_summary.
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program       = g_repid
          is_layout                = <b>gt_layout_d</b>
          i_callback_top_of_page   = g_top_of_page
          i_callback_user_command  = g_user_command
          i_callback_pf_status_set = g_status
          i_save                   = g_save
          is_variant               = gs_variant
          it_fieldcat              = gt_fieldcat[]
          it_events                = gt_events[]
        importing
          es_exit_caused_by_user   = gs_exit_caused_by_user
        tables
          t_outtab                 = it_detail_disp.

    Here is how you differentiate between the layout of two different grids. There is the parameter, IS_VARIANT in the function. You usually leave it empty or pass only the report name and username. <b>What you need to do is to pass unique string for each grids to the HANDLE field of the parameter IS_VARIANT.</b> You can probably hard code it as HEADER and DETAILS in your case. Once that is done, system identified that these two different layout for different grids.
    Regards,
    Ravi
    Note : Please mark all the helpful answers<u></u>

  • Is there a extensions for master and details pages?

    I want to know if there is an extension for the master page and detail page for Cs4.  I want to display the master page and have separate details pages.  I am using PHP.  I haven't anything on PHP but I have for ASP.  Can any one help me?

    www.webassist.com if you don't mind spending a few pennies.

  • EP 6.0 and Detailed Navigation

    Does anyone know why if you launch an iview in a separate window (as opposed to in the portal content window) you cannot minimize (close) the detailed nav by the iview settings ?
    This is EP6.0 SP19
    Haydn

    one for SAP then.
    Thx .... Haydn

  • RowNum for header and detail for XMLNodes using XQuery Sqlserver

    Hi All,
    I have this xml.
    declare @xml xml
    set @xml =' <StudentsData>
    <StudentData>
    <Name>AAA</Name>
    <subjects>
    <subject>
    <Name>computers</Name>
    <marks>30</marks>
    </subject>
    <subject>
    <Name>Maths</Name>
    <marks>40</marks>
    </subject>
    </subjects>
    </StudentData>
    <StudentData>
    <Name>BBB</Name>
    <subjects>
    <subject>
    <Name>Science</Name>
    <marks>30</marks>
    </subject>
    <subject>
    <Name>Physics</Name>
    <marks>40</marks>
    </subject>
    </subjects>
    </StudentData>
    </StudentsData>'
    I am able to get the proper data by querying like below.
    select
    s.n.value('(Name/text())[1]', 'varchar(50)') as StudentName ,
    z.c.value('(Name/text())[1]','varchar(50)') as SubjectName ,
    z.c.value('(marks/text())[1]','int') as Marks
    from
    @XML.nodes('/StudentsData/StudentData') as S(N)
    CROSS APPLY s.n.nodes('subjects/subject') z(c)
    But I want to include the header_id and detail_id to for these records using a variable like below.
    eg: declare @header_id =100
          declare @detail_id = 1000
    I want the output like below.
    HeaderId DetailId StudentName SubjectName Marks
    101 1001 AAA computers 30
    101 1002 AAA Maths 40
    102 1003 BBB Science 30
    102 1004 BBB Physics 40
    how do I get this using xquery.
    Thanks in advance.

    pls try
    declare @xml xml
    set @xml =' <StudentsData>
    <StudentData>
    <Name>AAA</Name>
    <subjects>
    <subject>
    <Name>computers</Name>
    <marks>30</marks>
    </subject>
    <subject>
    <Name>Maths</Name>
    <marks>40</marks>
    </subject>
    </subjects>
    </StudentData>
    <StudentData>
    <Name>BBB</Name>
    <subjects>
    <subject>
    <Name>Science</Name>
    <marks>30</marks>
    </subject>
    <subject>
    <Name>Physics</Name>
    <marks>40</marks>
    </subject>
    </subjects>
    </StudentData>
    </StudentsData>'
    declare @header_id int =100
    declare @detail_id int= 1000
    select @header_id+ROW_NUMBER() over(order by (select 1)) header_id,@detail_id+ROW_NUMBER() over(order by (select 1))detail_id,
    s.n.value('(Name/text())[1]', 'varchar(50)') as StudentName ,
    z.c.value('(Name/text())[1]','varchar(50)') as SubjectName ,
    z.c.value('(marks/text())[1]','int') as Marks
    from
    @XML.nodes('/StudentsData/StudentData') as S(N)
    CROSS APPLY s.n.nodes('subjects/subject') z(c)
    vt
    Please mark answered if I've answered your question and vote for it as helpful to help other user's find a solution quicker

  • Resource Bundle for Detailed Navigation

    Hi All,
    I am trying to modify the text "Detailed Navigation".I was not able to find the Resource Bundle for that.can any one let me know the location for the resource Bundle for changing the Detailed navigation text.
    Thanks,
    sk

    Hi,
    Up until now, there was no resource bundle for admin properties in a portal component. Properties were defined as component properties in the portalapp.xml (in english). Once you created an iView, you could then translate the properties in the PCD (for example, with translation worklist).
    This will change with an upcoming version -- perhaps 2004s SP14.
    Hope this helps and I understood your situation correctly.
    Daniel

  • How can I show a error popup and cancel navigation?

    I am using JDeveloper 11.1.1.6 with WL 10.3.5. I am new to ADF / JDeveloper...
    My use case is as follows:
    I have a bounded task flow with two view activities linked by a control flow case. The from activity is a simple table that allows a user to click a commandLink to go to a details page to modify the record (the to activity in described task flow).
    When a user clicks the commandLink to edit the record I need to execute a AM method that returns a boolean based on a PL/SQL procedure. If this AM method returns false I need to inform the user that the record is ineligible for editing and cancel navigation to the details page (stay on the current page). If true is returned I need to allow the user to proceed to the edit page.
    What is the best way to accomplish this? I have looked at http://andrejusb.blogspot.com/2011/10/how-to-disable-action-conditionally.html but I kept getting "navigationContext resolved to null". I have also tried inserting a method call activity in the task flow between the two view activities. Using this approach I am able to execute the AM method but I cannot figure out how to route the user based on the return.
    Am I even close? Any pointers?
    Thanks.
    Edited by: errodr on Apr 18, 2013 12:00 PM

    Hi,
    As another option you can try this way as well,
    1. From View Activity2, put a return control flow case saying "back" to View acitivity1 (this output will be used to go to first view activity from either view activity2 (back button) or loop inside view activity 1
    2. On your command button, in Action property (not Action listener), create a managed bean method and use it to drive the navigation (it expects a string return value)
    3. Inside your managed bean, invoke your AM method and based on true/false of AM value you return either "Back" or <viewactivit2 outcome>
    4. If giving "Back" doesn't work, try to return null and see if that works.
    Ravi Nuka

  • Detailed Navigation is closed by default

    Hi,
    The Portal with all packages is running fine in test system.
    The first Page (welcome) is displaying some KM-News in the content section and has some links in the detailed navigation (DTN).
    Then, I exported the ivies/pcd with all roles etc. to the production system.
    Now, whatever value I put in "Initial Display" in the roles (Automatic/Open), the first time, the user logs on, the DTN is completely close. If if reload the page, everything is fine and the DTN is open.
    I also checked the default framework page, but it is set to "OPEN" as well.
    No clue no more.
    Thanks for any help

    Hi,
    did you modified the TLN display level and detailed navigation display from level options?
    it looks the problem caused by this.

  • By default collapse all folders in Detailed Navigation

    Hi,
    Could anyone tell me if it's possible to collapse folders which are build in this manner:
    Role 1
    .. Folder 1
    .... Page a
    .... Page b
    .... Page c
    .. Folder 2
    .... Page d
    .... Page e
    .... Page f
    .. Folder 3
    .... Page x
    .... Page y
    .... Page z
    ect...
    I am working with EP6sp14, especially to run the External Facing Portal.
    Thanks helping me and my customer..

    Hi Leurs
    Ur req is very much possible
    What u need 2 do is make ur
    1)toplevel navigation level to 0
    2)detailed level navigation display level property to 1.
    I will explain each step
    1) I. Configure Top-Level Navigation
       1.In the Portal Catalog choose <b>Portal Users-> Standard Portal Users.</b> This folder contains the <b>Default Framework Page</b>.
       2.Right-click <b>Default Framework Page</b> and choose <b>Open->Object</b>.
       3.From the Page Content List select the <b>Top-Level Navigation iView</b> and click <b>Properties</b>.
       4.Scroll to the <b>Number of Display Levels</b>property and enter the value 0, 1, or 2, depending on how many navigation levels, if any, you want for top-level navigation.
         <u><b><i>Choosing 0 removes your top-level navigation and displays your navigation structure in the Detailed Navigation iView.</i></b></u>
       5.Click Save.
    2 Configure Detailed Navigation
      1.From the Page Content List of the <b>Default Framework Page</b>, select <b>Desktop Innerpage</b> and click Open.
      2.From the Page Content List of the <b>Desktop Innerpage</b> select the <b>Detailed Navigation iView</b> and click <b>Properties.</b>
      3.Scroll to the <b>Start at Level property</b> and assign a value that is one higher than the value of the <b>Number of Display Levels</b> property in procedure l. Configure Top-Level Navigation. For example, if top-level navigation is configured for one level, the detailed navigation begins on the second level, that is with the value 2.
      4.Click Save.
        <u><i><b>Detailed navigation is not automatically synchronized with top-level navigation; the values you enter for top-level and detailed navigation must agree. For example, if you enter the value 1 for top-level navigation, while detailed navigation still has the value 3, one level is left out, creating a gap.</b></i></u>
    III. Configure the Content Area
       1.From the Page Content List of the <b>Desktop Innerpage</b>, select the <b>Content Area</b> iView and click <b>Properties.</b>
       2.Scroll to the <b>Number of Display Levels in TLN</b> property and enter the same value as that of the <b>Number of Display Levels</b> property in procedure I. Configure Top-Level Navigation.
       3.Click Save.
    These steps will make ur Portal the way u want, i guess.
    Regards
    Bobu

  • Light Detailed Navigation Vs Heavy Detailed Navigation

    Hi All,
    What are the advantages/ disadvantages light detailed navigation have compared to normal detailed navigation. Is there any comparison chart available?
    Using normal Detailed Navigation, I could not see the URL's in my browser ( its always http://server:port/irj/portal ). I want to use the short urls and show the url in browser. Its working fine ( can see the url's) when used light detailed navigation.
    how to view the urls ( navigation url's) when used normal detailed navigation?????????? I know if we use light detailed navigation we can achieve this, but need it with normal / regular detailed navigation.
    Thanks,
    PradeeP

    Thanks again,
    As per the comparison sheet, SAP says Short URL's and Quick Links are supported in Default Framework page. But when I use Default Framework page with Default detailed navigation, Its not showing up the URL's in browser, I couldn't even see the short URL, Quicklinks while navigation in portal.
    My Actual requirement is giving the portal URL's links to the users to access and end users can get iview / page urls and save it for his / her future purpose.
    By using the Quick Links, we can give the quicklink to the enduser that he can use ( like http://xxx:5000/irj/portal/QUICK LINK).
    But when end user is navigating in portal using default famework and detail navigations, he couldnt see this quick links in browser.
    If I put Light Detailed Navigation with Default framework, will it work?
    because we have ESS and some BSP apps in our portal which uses EPCM and Work protect mode which is not supported by Light framework. But will it be supported by Default framework with light Detail navigation?
    Thanks,
    Pradeep

  • Looking for Up and Coming Captivate Users

    Announcing Captivate User Group of Seattle
    We are looking for topics, presenters and online examples to
    post to our blog.
    For contact and details - go to:
    http://www.captivateseattle.com/

    Mark, congratulations on the new user group! The Seattle area
    is fortunate to have folks with the energy and foresight to put the
    UG together. All the best!!
    .

  • Hide detailed navigation and Portal favorites windows for some roles?

    Hi ,
    We want to hide Detailed Navigation Area and Portal favorites area for some specific  roles.
    Thanks & Regards,
    Subba Rao

    Hi,
    1. You have to create a seperate desktop.
    2.  Inside the desktop, the framework which you are assigning will contain Desktop innerpage, Masthead and Top level navigation page.
    3. You need to copy the desktop inner page and paste with different name (since it is a standard page)
    4. Now open the custom desktop inner page and remove the iviews what ever you dont want.
    5. So now your framework page will not have the detailed navigation anymore.
    6. Then we need to set master rule collection to load this desktop for a specific role using if... then  condition.
    Finally the role will have only which ever the iviews you have selected in desktop inner page.
    Thanks,
    Mahendran B.

  • Master-Detail and Detail-SubDetail navigation.

    Hi!
    I am facing an issue regarding navigation in a second (subDetail) level child table.
    I have Master-Detail-subDetail like lilnks of three VOs.
    I have created 2 VLs for Master-Detail and Detail-SubDetail.
    Now on my custom page, navigation is fine for Master-Details but for 2nd level navigation between Details-SubDetails is dependent on SingleSelection that i have used to display related reocrds in SubDetail table.
    Is there any way to display subDetails automatically (without using single selection) just like in Master-Detaills. Or at least on page load it display related records in all the tablelayouts.
    I'm using Header Layout for Master , Table layout for both Deatil and Sub Details VOs.
    Kindly help
    Regards.
    Abbasi

    Hi All!
    I think there is no solution to this problem, only single selection is the solution.
    If any one has anyother solution plz let me know.
    Thanks and regards.
    Abbasi

Maybe you are looking for

  • How is the best way to delete Windows off of your Mac?

    I have Windows all up and running, and I no longer need it. What is the best way to get rid of that partition, and be back ot pure OSX? I would love to hear there is a way without erasing my whole hard drive. Thanks!

  • Webdynpro ABAP- Reference Links- Articals are not opening

    hi all in SDN-Webdynpro abap Webdynpro ABAP->Reference Links->Articals are not opening any another way to open all these articals?? thank u krishna.

  • Clicking on a link brings on ads 99% of the time

    This page is working beautifully, however it's beginning to skip around Other pages, no matter if it's a game or the news or email will ofter be redirected to another page containing ads. This is the one most often encountered. How can I get rid of m

  • Aperture won't accept serial number on new iMac

    Got a new iMac and copied over everything from the old G5 and the ONLY application that won't work is Aperture! It asks for the install product serial number - I enter it and it says it's invalid! I've done everything the 'installing professional pro

  • IPod not copying all songs back to pc

    I've been trying to copy all my songs back from my ipod onto a new pc that I just got because my old one was stolen. I've tried using Yamipod and Copypod and both work to a certain extent. I have about 5200 songs and each program only copies about 30