Removing Scroll Bars in WEBI Report

Hi All,
I want to remove scroll bars from my WEBI reports. I have observed that even if you have only one column in the WEBI report, scroll bar still appears. Is this anything to do with page layout properties of WEBI where you can set minimum limit for horizontal records per page as 20? Can anybody please help me with this?
Thanks,
Shweta.

Hi,
We also wanted to have the same thing,we tried to reduce the size of the report and tried to change the page size.
We did everything to remove that scroll bar and did not achieve it, hence we loged a case with SAP BO and they said  " this is how the tool is".
But they took it as the enhancement request dont know what is the status on that.
Cheers,
Ravichandra K

Similar Messages

  • How to remove scroll bar  in WEBI reports?

    Hi , i have below issue,
    We need to remove scroll bars from the WEBI reports. We have observed that even if we have only one column in the WEBI report, scroll bar still appears. Is this asomething which we can influence at the server level?
    Anybody please help me on this.
    Sri

    Hi Panan,
    thank you for your reply, I want to implement the same login for all WEBI reports, how can we do in server level...or is there any way to do this...
    Sri

  • How to add scroll bar in webi table

    Hi Experts,
    Currently i am working on webi report it consist lot of tables and charts. As per my requirement the webi table should contain scroll bar instead of showing all data in single shot. And user will scroll down  if he/she required.  Is it possible in webi?
    Regards,
    PRK.

    Hi Praveen,
    Adding scroll ball in Webi table is not possible currently.
    Requests has been raised by some people in SAP Idea place, see the link below for more details.
    You can vote in SAP Idea place for getting this feature
    Add scroll bars for Webi tables : View Idea

  • Scroll bar display in report

    Hi
    I want to set scroll bar in my report ..my column names should be fixed header...I surely need vertical scroll bar than horizontal scroll bar...I used the following javascript code to display scroll bar.
    <script language="JavaScript" type="text/javascript">
    <!-- Hide
    //Function Builds Static Header and Scrollable Div called with document onload
    function MakeStaticHeader(xDataGridName,xScrollHeight){
    //Grab the Table object
    var theTable = document.getElementById(xDataGridName);
    //Create a holder div so div header can be added correctly before table
    var myHolderDiv = document.createElement("div");
    myHolderDiv.setAttribute('id','tableHolder_'+ xDataGridName)
    //Create the Header Div, setting id and adding to Holder
    var myHeaderDiv = document.createElement("div");
    myHeaderDiv.setAttribute('id','divHeader_' + xDataGridName)
    myHolderDiv.appendChild(myHeaderDiv);
    //Insert the Holder and Header divs
    theTable.parentNode.insertBefore(myHolderDiv,theTable);
    //Append the Child
    myHolderDiv.appendChild(theTable)
    //More messy code with IE
    if(document.all){
    theName = "hold2_" + xDataGridName;
    else{
    theName = xDataGridName;
    //Create Body Div for scrollable body (IE creates a holder, mozilla creates the scroller)
    var theBodyDiv = document.createElement("div");
    theBodyDiv.setAttribute('id','divBody_' + theName);
    theBodyDiv.setAttribute('style','OVERFLOW-Y: scroll; OVERFLOW-X: auto; OVERFLOW: auto; HEIGHT: ' + xScrollHeight + ';')
    theTable.parentNode.insertBefore(theBodyDiv,theTable);
    theBodyDiv.appendChild(theTable);
    //Since IE can not apply the style to the new Child above, we need to make it messy! (IE is making this hard!)
    //Converts the holder to a scroller
    if(document.all){
    var theMessDiv = document.getElementById('divBody_' + theName);
    startDiv1 = '<div id="divBody_'+ xDataGridName +'" style="OVERFLOW-Y: scroll; OVERFLOW-X: auto; OVERFLOW: auto; HEIGHT: '+ xScrollHeight +';">';
    endDiv1 = '</div>';
    theMessDiv.innerHTML = startDiv1 + theMessDiv.innerHTML + endDiv1;
    //The following Code Builds the header
    theTable = document.getElementById(xDataGridName); // Arie
    //Grab border widths (have to check for different ways to define it!)
    var borderWidth = parseInt(theTable.style.borderwidth);
    if(!borderWidth){
    borderWidth = parseInt(theTable.border); }
    if(!borderWidth){
    borderWidth = parseInt(0); }
    //Grab the table Headers (if exsists)
         var theThs = theTable.getElementsByTagName("th");
         var hasThs = parseInt(theThs.length);
         var hasHeadCells = false;
         //See if the Table Headers exist
         if(hasThs>0){
         hasHeadCells = true;
    //Grab the table rows
         var theTrs = theTable.getElementsByTagName("tr");
    //Find the number of columns
    var theTrsTds = theTrs[1].getElementsByTagName("td");
         var numberOfColumns = parseInt(theTrsTds.length);
    //Grab all of the table cells
    var theTds = theTable.getElementsByTagName("td");
    //Determine the widths of the columns of the table
    var totalWidth = 0;
    var theWidths = new Array();
    for(i=0;i<numberOfColumns;i++){
              if(hasHeadCells){
              theWidths[i] = theThs.offsetWidth;
              else{
    theWidths[i] = theTds[i].offsetWidth;
              theTds[i+numberOfColumns].style.width = theWidths[i];
    totalWidth += parseInt(theWidths[i]);
    //Set the width of the div so the scroll bar is on the edge of the table
    document.getElementById("divBody_" + xDataGridName).style.width = document.getElementById("divBody_" + theName).offsetWidth;
    //Grab the content for the headers
    theHeaderCode = theTrs[0].innerHTML;
    //This is for IE only since it does not support getComputedStyle which is alot easier!
    var theStyle = "";
    if(document.getElementById("divBody_" + xDataGridName).currentStyle){
    //Grab the innerHTML and locate the style
    theX = document.getElementById("divBody_" + xDataGridName).innerHTML;
    theX = theX.split("style");
    //Verify that there is a style tag in the table tag
    if(theX[0].indexOf(xDataGridName) >= 0 && theX[1].indexOf("<TBODY>") >=0){
    //split aprt to get the style
    theQ = theX[1].split('"');
    //set the style string
    theStyle= "style='" + theQ[1] + "'";
    //Create the table code and set it on the document
    tbCode = "<table id='theAddon_"+ xDataGridName +"' "+ theStyle +">" + theHeaderCode + "</table>";
    document.getElementById("divHeader_" + xDataGridName).innerHTML = tbCode;
    //Apply the CSS Class and the Widths to the header Elements
         if(hasThs > 0){lookFor = "th";}
         else{lookFor = "td";}
    theNewTD = document.getElementById("divHeader_" + xDataGridName).getElementsByTagName(lookFor);
    for(i=0;i<theNewTD.length;i++){
    theNewTD[i].style.width = theWidths[i];
    /* Arie Workaround - English version*/
    //theNewTD[i].style.borderStyle = "solid none solid solid";
    //theNewTD[i].style.borderWidth = "1px";
    //Apply CSS to the static table
    theOrgTable = document.getElementById(xDataGridName);
    theNewTable = document.getElementById("theAddon_" + xDataGridName);
         for(x=0;x<theOrgTable.attributes.length;x++){
         if(theOrgTable.attributes[x].nodeValue && theOrgTable.attributes[x].nodeName.toLowerCase() != "id"){
         theNewTable.setAttribute(theOrgTable.attributes[x].nodeName,theOrgTable.attributes[x].nodeValue);
    // Calculate the scrollbar width and streach the last header cell
    var scrollbarWidth = document.getElementById("divHeader_" + xDataGridName).offsetWidth - document.getElementById("theAddon_" + xDataGridName).offsetWidth
    var lastHeaderCell = theNewTD.length - 1;
    theNewTD[lastHeaderCell].style.width = theWidths[lastHeaderCell] + scrollbarWidth;
    theNewTD[lastHeaderCell].style.borderStyleLeft = "solid";
    theNewTD[lastHeaderCell].style.borderWidthLeft = "1px";
    //Hide the orginal header row
         theTrs[0].style.display = "none";
    //Make mozilla browsers see the applied styles
    makeSame(theOrgTable,theNewTable)
    //Function to make Mozilla have the same inline styles
    function makeSame(elem_1, elem_2){
    if (window.getComputedStyle){
    elem_1x=window.getComputedStyle(elem_1, "");
    elem_2x=window.getComputedStyle(elem_2, "");
    elem_2x = elem_1x;
    // End Hide -->
    </script>
    I called the script code in onload event like
    onload="MakeStaticHeader('table_grab',50)"
    but my problem is that it is not displaying the data in proper format(not displaying data under correct columns)...i got this problem only when I have more columns(horizontally large)..I am not finding any problem if i have less columns with much data(vertically large)....
    I gave a sample report in the following link...
    http://apex.oracle.com/pls/otn/f?p=9608:1:409755984054854:::::
    Can anyone say how to set vertical scroll bar with fixed column headers in neat format even the number of columns are more...?
    Fazila

    Hello,
    This is a well-known issue with this code, as you can see in the thread you copied the code from.
    In the following post, Laura is presenting an IE only solution, based on a different code I wrote - Re: How to implement fixed column headers . Cross browser solution is yet to be found.
    Regards,
    Arie.

  • Remove blank cell in Webi Report

    Hi Guys,
    I have one simple ques. how to delete or remove blank cell from Webi Report.
    Regards,
    Manoj

    Mr Manoj,
    We assume that one posts questions that are difficult to find and a little patience in waiting for replies.
    Please see the [Rules of Engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement] page for additional information.
    The product guides can be found here,  [http://help.sap.com/businessobject/product_guides]  please select and download the guide you need.
    Thank you!
    Simone Caneparo
    Forum Moderator

  • Removing Scroll bars in URL iView

    Dear Experts,
    I have a requirement of displaying an INTRANET site into URL iView in a page. The problem is I am getting a scroll bar when the contents increase inside the URL iView.
    I tried with the following settings:
    iView properties:
    Height - Automatic
    max automatic height - 2000
    Fetch mode - Client
    Page properties:
    Height - Automatic
    max automatic height - 2000
    But still I am getting the scroll bars.
    Is there anyway I can remove scroll bars by resizing the iView size automatically depending on the contents in it.
    Regards,
    Nirmal Sivakumar G

    Hi,
    Check the below blog .It will resolve your issue
    Avoiding scrollbar problems in URL iViews
    Points are welcome if it is useful
    Koti Reddy

  • Want to remove scroll bar from navigation pane in Web Template

    HI All,
    I have a report created in WAD.When I am using navigation pane, I get a scroll bar there.
    I want to remove that scroll bar from navigation pane.Tried increasing the height in the property of same but nothing is helping.
    The expanded option should be ON and do not want to group characteristics shown in nav. pane.
    Please suggest, if there is any other way to do that.
    Thanks,
    Anu

    Why do you want to expand it? Generally when you click on Nav pane, it should show the assigned chars under it. No scroll bar comes up with  below settings:-

  • Removing scroll bars from hierarchial tree

    hi
    scroll bar appears in the hierarchial tree ,even if it is not expanded to the fullest,
    does anyone have any workaround for removing this scrollbar if the data is less
    thanx
    atul

    Hi,
    We also wanted to have the same thing,we tried to reduce the size of the report and tried to change the page size.
    We did everything to remove that scroll bar and did not achieve it, hence we loged a case with SAP BO and they said  " this is how the tool is".
    But they took it as the enhancement request dont know what is the status on that.
    Cheers,
    Ravichandra K

  • How to remove blank pages from WebI Report in view page layout option

    Hi,
             I am working in Business Objects XIR2 environment. I have a WebI report with several sections. I need to show the report as a book with 69 sections (each section on new page). there are 69 sections on cost center and each cost center section has almost 10 sections embedded in it. When i see in regular view - I only see 69 pages but when I try to see in "View Page Lay out" option, there is one blank page added after each results page.
    Please let me know how to remove this blank page. I need to give users the option to download the book as PDF on to their machine. Now, when I download to my machine, I see one blank page after each results page.
    Thanks in advance.

    Jus convert your report in Page Layout mode and see if your first pafe is getting expand in the second page.
    Now check if there are any cell going into second page.
    - if there are any blank cell which is there after table.
    you have to check formating very carefull.

  • ALV top-of-page remove scroll bar

    Hi!
    In my ALV i have a header with some information and a logo. With the logo it creates a vertical scroll bar. I can't reduce the size of the logo because it as to be that size.
    So...i've been searching for some way to remove the scroll bar from the header, butt i didn't found anything that could help me.
    I'm using 'REUSE_ALV_GRID_DISPLAY' with i_callback_top_of_page   = 'TOP-OF-PAGE'. And in form top-of-page i use
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = t_header
          i_logo             = 'LOGO'.
    to call the logo.
    Is there a way to remove or set the header to a fix size?
    Thanks in advance,
       RT

    Hi!
    In my ALV i have a header with some information and a logo. With the logo it creates a vertical scroll bar. I can't reduce the size of the logo because it as to be that size.
    So...i've been searching for some way to remove the scroll bar from the header, butt i didn't found anything that could help me.
    I'm using 'REUSE_ALV_GRID_DISPLAY' with i_callback_top_of_page   = 'TOP-OF-PAGE'. And in form top-of-page i use
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = t_header
          i_logo             = 'LOGO'.
    to call the logo.
    Is there a way to remove or set the header to a fix size?
    Thanks in advance,
       RT

  • Removing Scroll bar from Applet

    My webpage is having different applets. One of my applet is
    in a <TD> tag <APPLET CODEBASE .............
    this applet shows a tree view. When I click a folder in tree
    view it applies scroll bar instead of expanding.
    I want to remove this scroll bar and want the space to expand
    (instead of Scroll bars). Can anyone help me in that.
    Thanks.

    Hi Yomesh ,
    If you want to enable the expand/collapse icon , then you can set the property named Show Tray of the page to yes and then test . By default the property meant for showing the expand/collapse icon is set to yes . You only need to enable the tray and check .
    I did not get the requirement that you have with respect to scrollbar . Where is that scrollbar appearing that you want to remove?
    Regards
    Mayank

  • Removing scroll bar from product pages

    I need to remove the scroll bar that appears on the product pages. It doesn't matter if I have only one product or 100 on the page with the small images, I still get a scroll bar on the right side. I've tried adding and removing margins and padding, set the container height to auto, and removed the previous and next buttons from the shop templates, all to no avail. It appears to be caused by the table that holds the products, but no change to the code fixes it.
    I have included a screen print of the top of the page showing the scroll bar. There are only 3 images on this page and plenty of room below them. Overflow has been set to auto (and/or visible) on the container, the table, and the page.
    So, can anyone tell me how to shut off that scroll bar? I can't find that code that includes it so I can't see what's going on.
    Thank you for you help.
    Sincerely,
    Ahurani

    Liam,
    Thank you for answering.
    I didn't want to turn the scroll bar on the page off, but the scroll bar that appears in a div container. I finally solved the problem by turning overflow: auto to overflow: hidden. And smacked myself in the forehead and said, "Duh. I knew that." Too tired and too close to the problem I guess.
    The only other thing I can't seem to find is the large space that appears above a product table. I've tried everything from margins to padding and beyond.
    Sorry about not including the url. I have used the forum so rarely that I didn't think of that. It is www.whimsicalley02.businesscatalyst.com, just in cases you want to look at the big space on Harry Potter > Accessories and on the large product page. I'd love to tuck the product closer to the breadcrumb, but if that is not possible, then c'est la vie.
    Thank you.

  • Removing scroll bar from Nav Panel & Work Area layout

    Hi Guys,
    I have a requirement to remove the scroll bar which appears between nav panel and Work Area in 'Nav Panel and work area layout'.
    I would like it to be as a single page as we get in narrow: wide layout.
    Well I could just do it by using a narrow:wide layout, but the challenge is I also need the collapse/expand Icon which we get in Nav Panel/WA layout.
    I am looking fcor help with either
    1. Removing the scroll bar from Nav Panel/WA layout
    Or
    2. Adding collapse/expand  icon to narrow:wide layout.
    Thanks,
    Yomesh

    Hi Yomesh ,
    If you want to enable the expand/collapse icon , then you can set the property named Show Tray of the page to yes and then test . By default the property meant for showing the expand/collapse icon is set to yes . You only need to enable the tray and check .
    I did not get the requirement that you have with respect to scrollbar . Where is that scrollbar appearing that you want to remove?
    Regards
    Mayank

  • Removing scroll bars

    New at this but was hoping there was a way to remove the scroll bars from your end product??
    Any help would be appreciated.
    Val

    I second that question.
    Could any one help?
    Thanks
    http://thecoolestgames.net

  • How to remove scroll bars

    I am embedding my form. How do i remove the scroll bars?
    Also, can I have 2 columns?
    If not, can I tighten up the space between items and delete the huge space before the Submit button?

    How did you embed the form? Did you copy the HTML code from the actual form or did you go to the distribute tab in the app, click Embed, copy the embed code and then paste it into your HTML. Based on what you are seeing I think you did the former which is not the correct way. You need to use the embed code that the app provides to do this.
    We currently don't support multiple fields on one row nor the ability to "tweak" the spacing.
    Thanks for your feedback!
    Randy

Maybe you are looking for

  • Dw keeps crashing. other applications also, except for acrobat.

    i am using DW cs4, the error message: ordinal number 3765 could not be located in digital library link LIBEAY32.dll  DW keeps crashing, and so does my PS and SB. only DW has an error message. What should I do?

  • Adobe updates are a hassle!!@@@####$$$%$$$$$$$$

    The Adobe acrobat updates are F@@@#d up.  The computer gets frequent updates seems like every week. then the update box comes up like every hour, then when you do update it you have to stop everything and restart your computer which on older computer

  • AVCHD Log and Transfer - with Sony HDR-SR7

    I have FCE4 running on my Mac Mini. 1.83 GHz Intel Core Duo. The FCE4 program was installed by my son using his account. He uses it the most and it has been working fine for him until now. No new FCE4 updates have been loaded. However, all of a sudde

  • NEED of SAP GUI

    Hello gurus, As I am new to SAP ,could anyone tell what is the use of SAP GUI and purpose of SAP GUI Thanks in advance With regards, Vardhan.

  • 1 ASN is only for 1 delivery(line item)??

    Hi, 1 ASN is only for 1 delivery (line item)? or others?? Thank you.