Increasing the width of Pivot table Columns

Hi Gurus,
Small pivot table --> ( ie having less no of columns which generally can be seen in a single page without scrolling to the right)
If i have a small pivot table , then in the column properties through additional formatting options i can increase the width of an individual column.
However if the pivot table is Big,I am not able to increase the width of the individual column .
I tried setting width in the additional formatting options in the Content Properties( just above Rows and below Section there is a small grey box containing finger).
Now the Content Properties indeed increases the width of the column, but it also increase the width of the whole Pivot Table.
See...If i have a fixed number of columns in a PIVOT Table that do not change with prompt, then this solution work fine...
but the problem comes when the no of columns in pivot Table reduces based on the prompt selected.
In this case the less no of columns tries to occupy the whole width set in the content properties.
In short, with Content Properties the width of the PIVOT Table becomes fixed, irrespective of the no of columns coming.
Also after setting content properties, I am not able to print the report to PDF.
So the Question is... Can we increase the width of a Big Pivot Table whose no of columns keeps on changing based on the prompt....
Big pivot table -->
(ie table having no of columns which exceeds a single window frame and have to scroll to right to see the rest of the columns)
I hope i have not made things messy...
Thanks
Ashish

Ashish,
Yes, you can set a fixed size for these. I'm sure you are fixing these because of PDF issue which might be irregular in sizes. Just play arnd with Custom CSS options.

Similar Messages

  • To change the width of a Table Column

    Hai Developers..................
    I have problem with the Table Column Width.
    When am on search state.
    The search results are showing in a table.
    At that time i want to change the width of the each column with respect to the column content.
    Like the jsp table.......
    Pls replay with example......
    Thanks.

    And that is why Swing related questions should be posted in the Swing forum so we don't spend time guessing what you are talking about.
    Darn, the [Table Column Adjuster|http://www.camick.com/java/blog.html?name=table-column-adjuster] didn't show up in that Google search.

  • How to fix the table column header and resize the width of a table column?

    Hi all,
    I have the following two requirements,
    1) I need to wrap the table column header into two rows. I mean the header must be displayed in two rows.
    2) I need to to able to resize the width of the column. i.e The user should be able to drag the column width according to his requirement.
    Is this possible. Any help would be appreciated!
    Regards
    Kishan

    Hi Kishan,
    Refer to these links.They may ne useful for you.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80d81237-b780-2a10-d398-cc33af6bd75c
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ded11778-0801-0010-258f-ac3b9408a194
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30291df2-b980-2a10-0884-839c4f7f147e
    Regards,
    Sumangala

  • Adjusting with Width of Advanced table column

    Hi,
    I have used Advanced table in my results table.
    One of the Column Header values is "Max Pressure (PSIG)" and appears as
    Max Pressure (
    PSIG)
    I need to show it show as either "Max Pressure (PSIG)" or
    Max Pressure
    (PSIG).
    I have not used Attrinbute Sets for columns.
    I even tried programmetically to put spaces between[b] Max pressure and (PSIG).Didnt work out.
    OA Page sets the width of the columns as per screen size
    Any other idea to solve this issue?
    Thanks,
    Gowtam.

    Hi Gowtam,
    Try to increase the width of ui item under this header. Also try to increase the width of advanced table.
    Regards,
    Nagesh Manda.

  • How do I change the width of a lead column in an enhanced layout ?

    I have an enhanced layout in BPS that gets rendered in TPM (CRM2007) application.
    I need to increase the width of a lead column in this layout. I saw a bunch of methods in a BADI UPX_LAYOUT_RENDER. There is one to manipulate XML and another to manipulate HTML. Are these my only options? or is there an easier way via config or another BADI?
    Cheers
    Vijay

    Can you share if you have got a solution to this.
    Regards
    Manga

  • How to increase the width of the column in Tableview

    Hi ALL,
    How to increase the width of the column in tableview?I have name column where big name is displaying in rows.Does any one have any idea how to increase the width of the column dynamically in tableview.Please respond its little urgent.
    Thanks in advance

    Hi Peter,
    Here is my Dynpage
    package com.ust.jcatotable;     
    import java.awt.Event;
    import javax.resource.cci.MappedRecord;
    import javax.resource.cci.RecordFactory;
    import com.sapportals.connector.connection.IConnection;
    import com.sapportals.connector.execution.functions.IInteraction;
    import com.sapportals.connector.execution.functions.IInteractionSpec;
    import com.sapportals.connector.execution.structures.IRecordSet;
    import com.sapportals.htmlb.DropdownListBox;
    import com.sapportals.htmlb.event.TableNavigationEvent;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent;
    import com.sapportals.portal.ivs.cg.ConnectionProperties;
    import com.sapportals.portal.ivs.cg.IConnectorGatewayService;
    import com.sapportals.portal.ivs.cg.IConnectorService;
    import com.sapportals.portal.prt.component.IPortalComponentContext;
    import com.sapportals.portal.prt.component.IPortalComponentProfile;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    import com.sapportals.portal.prt.component.IPortalComponentResponse;
    import com.sapportals.portal.prt.runtime.PortalRuntime;
    public class Display extends PageProcessorComponent {
      public DynPage getPage(){
         return new DisplayDynPage();
    public static class DisplayDynPage extends JSPDynPage{
         private Object formatFlag;
         public static IConnection connection ;
         private IPortalComponentRequest request;
         private IPortalComponentContext context;
         private IPortalComponentProfile profile;
         private IPortalComponentResponse  response;
         private int visibleRow=1;
         TableBean myBean;
         public void doInitialization(){
                   response = (IPortalComponentResponse) this.getResponse();
                   request = (IPortalComponentRequest) this.getRequest();
                    context = request.getComponentContext();
                    profile = context.getProfile();
                    IPortalComponentProfile profile = context.getProfile();
                    Object o = context.getValue("myBean");
                    if(o==null || !(o instanceof TableBean)){
                       myBean = new TableBean();
                       setBeanFromProfile(profile, myBean);
                       context.putValue("myBean",myBean);
                     }else {
                       setBeanFromProfile(profile, myBean);
                        myBean = (TableBean) o;
                    this.getData();
         public void myOnNavigate(Event event) throws PageException{
              TableNavigationEvent tne = (TableNavigationEvent) event;
              this.visibleRow = tne.getFirstVisibleRowAfter();
              if(myBean!=null)
              myBean.setVisibleRow(new Integer(this.visibleRow).toString());

  • To increase the length of a vanilla column

    Hello Everyone,
    I have a situation, where I have to increase a length of a vanilla column in siebel.
    I have to increase the length of a base column CORP_STOCK_SYMBOL of a vanilla table S_ORG_EXT. From the tools level I can't do this as it does not allow me to.
    If I can make the change from the backend, it won't reflect the same in the tools(Logical Level). But in the DB level you can see that the length has altered. But when u try to update a value and then open the application it throws an SQL error. What I am thinking is, though the length is altered at the physical level, in logical level it has not changed therefore i guess the SQL error is popping.
    Or can I alter the S_COLUMN table itself? If it is done, I fear the problem while migrating this to different environment.
    Please let me know the solution for this if any of you people have encountered the similar situation.

    If you insist on increasing the length of the column, I would get Oracle involved.
    Another option might be to use a different column or create a new column.

  • How to increase the width of Panel Tabbed layout

    How to increase the width of detailed items of a Tabbed Panel ? I have many columns inside a detailed item of tabbed panel i can see only 3 colums ,to see the rest of the column i need to scroll. I tried to set the width but doesnt seems to be working
    <af:panelTabbed id="pt2" inlineStyle="width:800.0px;">
    <af:showDetailItem text="Interview" id="sdi1"
    inflexibleHeight="50"
    inlineStyle="width:800px; border-color:Aqua; border-width:thin;"
    styleClass="AFStretchWidth">
    Is there any way to increased the width of showDetailItem of panelTabbed ?
    Thanks

    Make sure the stretchChildren property of the shoDetailItem is set to first.

  • Has any body tried increasing the width of editable dropdownbox

    Hi,
    Has any body tried increasing the width of editable dropdownbox.
    anyway i will be attempting it soon.
    If anybody has done it please guide me.
    Thanks.

    After overriding findByKey and not calling super if the passed Key is null, I found another error; BC is trying to update the PK of type DBSequence - JBO-27008 ReadOnlyAttrException. My "fix" was to override the setAttribute method in my ViewRowImpl and ignore any attempt to update the PK.
    Everything is working now and I get my JBO-27014 mandatory error messages.
    Just a side note: If I just change my mandatory field to another value, the setAttritbute method for the field gets hit just once. If I set it to blank, it gets hit 5 times for the same field and once for the PK field. The PK value being sent is always from the first row in my editable table.
    Tom
    Message was edited by:
    user556303

  • Increasing the width of scroll bar

    Hi,
    I have a table which is added to a JScrollPane and a JScrollBar is added.
    How do I increase the width of the JScrollBar?
    I have tried b.setSize..... and no luck :(
            //Create the scroll pane and add the table to it.
            JScrollPane scrollPane = new JScrollPane(table);
            scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);
            JScrollBar b = new JScrollBar();
            scrollPane.setVerticalScrollBar(b);
            //Add the scroll pane to this panel.
            add(scrollPane);cheers
    bobby

    Looks like my day of posting "don'ts" <g>
    OnlyForJava wrote:
    Hi bsbiran ,
    use setPreferredSize on JScrollBar
    Beware that setting any of the setXXSize (with XX = min/max/pref) completely by-passes any size-calculation normally done by the component and/or its ui-delegate. So that's definitely not recommended. Even if it works now it sure will come back to and bite you later.
    @OP: the basic question is: Why do you want to do it? Typically, a component's pref sizing is determined internally based on some state. If you want to augment that internally calculated size, the correct way is to subclass the component, override the getXXSize and add any custom calculation.
    Cheers
    Jeanette

  • To increase the width of Bar in OLE excel bar chart

    Hi All,
    I am using the OLE method to bring the data of my internal table onto an excel sheet in the Vertical Bar graph.
    The data is populated correctly but the width of the bars is very less due to which I am unable to differentiate between different colours.
    How can i increase the width of the bars?
    Here is a piece of my code.
    GET PROPERTY OF gf_application 'Charts' = gf_charts .
      CALL METHOD OF gf_charts 'Add' = gf_chart .
      CALL METHOD OF gf_chart 'Activate' .
      SET PROPERTY OF gf_chart 'ChartType' = '52' . "Vertical bar graph
      CALL METHOD OF gf_chart 'SetSourceData'
      EXPORTING #1 = gf_cells
      #2 = 1.
    Please Help!

    Hi,
    I am trying to increase the width of bars in bar graph developed in 10g reports. I found your thread which says please find in my previous posting.
    I could not find. can you please enlighten me on this question
    You help will be truly appreciated.
    Thank you,

  • How to increase the width of the Crystal Report

    Hello All
    How to increase the width of the Crystal report template in the CR designer in .NET 2005 editor ?
    I need to design a report which has to accomodate more number of columns.So achieve that i need to redesign the report having more width.
    CrystalReports version 10.2.3600.0
    Thanks in advance
    Srivatsa

    HI Srivatsa,
    You can make a wider report by creating virtual pages. Virtual pages are the extra pages to the right of the main page that get created to accommodate cross-tabs that are wider than a single page. By inserting a cross-tab in a report then suppressing it, you can create a report that is multiple pages wide.
    Insert and Suppress a Cross-Tab
    1. On the 'Insert' menu, click 'Cross-Tab'.
    2. In the Cross-Tab Expert, click any field and move it into the 'Columns' box, and click any field and move it into the 'Summarized Fields' box. Do not move any fields into the 'Rows' box.
    3. Click the 'Customize Style' tab and select the following check boxes:
    " Suppress Empty Rows
    " Suppress Empty Columns
    " Suppress Row Grand Totals
    " Suppress Column Grand Totals
    4. Click the 'OK' button and then insert the cross-tab into the Report Header section.
    5. On the 'Report' menu, click 'Format Sections'. Click 'Report Header' and select the 'Underlay Following Sections' check box.
    When you run the report you will not see the cross-tab, but you will be able to scroll to the right and see multiple virtual pages.
    ====================
    NOTES:
    " As there are no rows to the Cross-Tab, it does not carry on to Page 2 and the virtual pages do not appear past the first page.
    " To increase or decrease the number of virtual pages do one of the following:
    - Limit the number of records for the field in the 'Column' box of the 'Cross-Tab Expert' using the 'Select Expert'.
    - Change the width of the 'Column' field in the Cross-Tab by moving the edges of the field.
    ====================
    How to Insert Fields on Virtual Pages
    You cannot drag-and-drop a field onto a virtual page, you can only do so on the main page. To get a field to appear on a virtual page:
    1. Insert the field on the main page.
    2. Click the 'Preview' tab.
    3. Drag the right edge of the field to the right, onto the virtual page.
    4. Drag the left edge of the field to the right, onto the virtual page.
    Hope this helps!!
    Regards,
    Shweta

  • How to increase the width size between PROMPT and TEXT BOX?

    Hi Gurus,
    my page having MessageTextInputs. Normally page runs displays the Prompt name and one text box will displayed.
    my requirement is
    1) how to increase the width size between PROMPT and TEXT BOX?
    2)prompt name displays like
    elephant
    xxxxxant
    xxxxRose
    here xxxxx indicates SPACE
    but my client requirement is don't displays the SPACES in left side.
    so our requirement is in page PROMPT displays like
    elephant
    ant
    rose
    How to achieve this plz help me
    its very urgent
    Thanks

    Hi,
    Create a table layout region and under that use 'messageStyledText' for displaying the prompt and use 'messageTextInput' for text field without giving any prompt to that.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                           

  • How to fix the width of ADF Table

    Hi,
    I am developing an application in ADF using ADF Faces Components . I am using Oracle Jdev 10.1.3.1.0
    I am dropping the Transient View object as ADF Table on UI. I have set the width property of table to 100%, I have also changed the inlinestyle width also to 100%. These two did not work for me.
    The issue is if a column has a value of bigger length the table size is extending and if the column has a value of smaller length the table size is reducing.
    Is this the expected behaviour of the width property of the table ?? . Is there any way to fix the table size. Please provide me some pointers to fix the issue.
    Thank You.

    Hi vijay,
    Setting the width to 100% did not work for me.
    Table Script: Create table sample (name varchar2(1000), num number);
    Insert the below Data:
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,1234
    aaaaaaaaaaaaaaaaaaaaa,12
    aaa,3444
    aaassssssssssssss,1234
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,123423
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,123123
    With this info in the table drop it is as view object on the UI.
    Set the RangeSize to 2 in the PageDef.xml file
    The issue is: For the first 4 rows the table size is showing perfectly but when it showing 5 and 6 row on the UI the table is stretching.
    Please provide me some more pointers to fix this issue.
    Thank You.

  • How to increase the width of the drop down list box in SSRS multi value parameter

    Hi,
    I am using SSRS 2012. I have a parameter, which accepts multi value.
    The width of the drop down list box is very small, and the user need to scroll to the right to view the complete view of the content in the list box. But, if I don't use multi value then the length is good.  Kindly suggest how to I increase the width
    of the list box when it set to multi value parameter.
    Thanks in advance,
    Mahalengam Arumugam

    Hi Mahalengam,
    After testing the issue in my local environment, I can reproduce it. When the values for a single parameter are too long, the drop-down list of the parameter will automatically enlarge to an appropriate size. While the values for a multiple parameter are
    too long, we need to scroll to the right to view the complete view of the content in the list box in SSRS 2008. But in SSRS 2008R2 and SSRS 2012, we can directly drag the black control at the bottom of the list box to control the size.
    The following screenshot is for your reference:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support
    Hi Katherine,
    Thanks for your reply. I understood we need to drag the list box to a maximum size to view the contents.
    But, this seems an additional task, i know this is a limitation in the current version of SSRS and hope it will be resolved in the next versions.
    Thanks for your efforts,
    Mahalengam Arumugam

Maybe you are looking for

  • Report SAFT-PT  for Portugal

    hello, we are currently trying to implement the report SAFT PT in our Project and  I have some questions regarding the selection criteria in transaction  RSAFT_XML could you please  tell me the  documents types we should enter at the bottom of the sc

  • XAML DataContext: name does not exist in the namespace

    I have created a new C# WPF Application project in VS 2013, named dataconfigtest.  The namespace is dataconfigtest. I add a new, public class named "TestDataClass".  It is also in the dataconfigtest namespace. I add the following code to the XAML fil

  • Java applets videos not working on my MacBook Pro late 2011

    Hello, I have Mac book pro wit os lion x 10.7.3 and the problem is that i am unable to play java videos from certain sites.. here is the screenshot please help me on this isue.

  • Ipad 2 as a present.

    My mom has mentioned she wants an ipad 2, so I decided I ll buy her one but Im not sure what size to get her. She says she would want to watch movies and tv shows, have some music ( Im not sure how much. On her last ipod nano she didnt have much.). S

  • Apple Mobile Device Support won't uninstall

    I called the support line to see why my phone won't show up in iTunes. They told me to unistall all 6 components o iTunes and I have with the exception of apple mobile deivce support. It won't unistall regardless of what I do. Help?!