How to increase the width of a report

Respecetd guru's,
i am facing problem to generate a report in our oracle report biulder.
becuase i have task to generate FORM NO.X .though i am in HRM module is has so many entity inside .and when i am trying to put thsese its exceed the margn line.
so how i solve this problem..
plez help me out..

Hi,
You might want to post this in the reports forum.
Reports
-Arun

Similar Messages

  • 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 performance of a report

    can any body tell me how to increase the performance of a report?////
    i have prepared a report to show the expense detail .I have used BSIS and BSAS table.
    But whenever I am executing it is facing runtime error (TIME_OUT error ).
    Moderator Message: Duplicate Post. Read my comments in your previous thread.
    Edited by: kishan P on Nov 25, 2010 1:38 PM

    Please SEARCH in SCN before posting.
    Also post performance related issues here.

  • 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.

  • 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());

  • 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 increase the size of a report ( width)

    hello Everybody ,
    In my report, I want to increase the width to put additionnal objects but I don't spread the big frame which bounds the report.
    How must I process to do it (increase the size of report) ?
    Helps
    Regards

    Go on Object navigator
    paper layout
    main section
    there are height and weigth you can adjust as required
    vikas

  • 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

  • How to increase the width of the Fluid Grid Layout from 1008px to 1080px?

    Good day all, I'm experiencing a slight problem with Fluid Grid Layout in Dreamweaver CS6. I want to increase it's width so that it could be one with my Photoshop CS6 design (which is 1080px), the problem is that I can't as I am limited to 1008px. How do I increase the width? I ultimately am re-coding my design as my client demanded a responsive design but I'm clueless in that avenue which is why I resorted to re-doing everything under the set & safe default (Fluid Grid Layout) that doesn't require me to udnderstand media queries at an expert level.  

    While Fluid Grid Layout can save you some production time, you still need a good understanding of CSS Media Queries to use it.
    Introduction to CSS Media Queries
    http://www.adobe.com/devnet/dreamweaver/articles/introducing-media-que ries.html
    CS6 Fluid Grid Layouts (6 min video)
    http://tv.adobe.com/watch/digital-design-cs6/creating-adaptive-designs -using-fluid-grid-layouts-in-dreamweaver-cs6/
    CS6 Fluid Grid layouts (17 min video)
    http://tv.adobe.com/watch/learn-dreamweaver-cs6/using-fluid-grid-layou ts/
    Step-by-Step tutorial -- Building Fluid Grid Layouts in DW CS6
    http://www.adobe.com/inspire/2012/08/fluid-grid-layouts-dreamweaver-cs 6.html
    Instead of fixed-widths in pixels, FLG code is all % based.  It starts with the mobile layout and cascades to tablet, then desktop.  If you want to use fixed-widths in pixels, you must manually change the CSS code for all three devices.
    Nancy O.

  • How to change the width of PDF report

    When i download an interactive report to a PDF. All the columns will have the same width, how to change the width of the column?
    Thanks,
    Jen

    I don't think its possible for downloading from interactive report but let's see if anyone else has got a work around.
    The other way to have absolute control over report layout is to create reports using 'Report Query' & 'Report Layout' under 'Shared Components'.
    Regards,
    Ashish Agarwal
    http://www.dbcon.com

  • How to increase the width & heigt of page in smart forms...

    Dear abaper,
    In smartform i have one problem,
    the default page size is 20 cm ht & 20 cm width,. but i want to create 4 windows havehing
    leng & width of (total 4 windows) more the 20*20cm .so an error message is displaying ''window dose not fit on page 1''.
    can any one sugesst how to increase the page size (weather it is possible or not) .what is the soulution for this.
    regards
    veera

    Hi,
    Open the Smartform and click on FORM PAINTER.
    A graphical window will appear displaying all the windows you have created.
    These windows are going beyond the paper size. Resize them so that they would fit in the page. You can also extend the page by simply clicking & dragging the edge of the window.
    Best regards,
    Prashant

  • How to increase the width of a field in oracle reports 6i

    Hello,
    I'm facing a problem related to width of field. I have a table with field abc varchar2(1500) and when I try to show it in report. I'm unable to see complete data because field size in report is 300.
    Kindly guide me to increase the size/width of field in oracle report 6i
    thanks in advance
    sadiq

    Post your question on Reports forum
    Reports

  • How to increase the width of field Whld Tax

    Dear Friend,
    I was configuring WHT formulae for TDS setcion code 195 with Time dependant formulae
    My requirement is If the base amount is 100000 the TDS will be as under:-
    TDS  @ 10%              =  Rs10000/-
    Surcharge @2.5%    =   Rs.250/-     (2.5% on Rs.10000) as such in the formulae I have put 0.25
    E Cess @ 3% on (102.5) = Rs308/- ( 2.5% on Rs10000250) for this I need to put formulae 0.3075
    But the field is not accepting 0.3075 , It is only accepting upto 2 decimal places
    Please advise how to increase it.
    Regards,
    Alok

    Dear Srini,
    I want to create time dependant WHT Code with the below requirement:-
    My requirement is If the base amount is 100000 the TDS will be as under:-
    TDS @ 10% = Rs10000/-
    Surcharge @2.5% = Rs.250/- (2.5% on Rs.10000) as such in the formulae I have put 0.25
    E Cess @ 3% on (102.5) = Rs308/- ( 2.5% on Rs10000250) for this I need to put formulae 0.3075
    I have created thre different Wht Tax Code and in the rate field maximum five character can be put, but for calculating 3% E Cess I have to put 0.3075 which is 3% on (10% + 2.5%).
    How can I do it please advise.
    In time independet tax code there is a provision to put 6 character but in time dependant max 5 character.
    Regards,
    Alok

  • How to increase the width of FM gui_upload

    Dear all,
            i want to upload one file through FM gui_upload.
           althrough i define record 700 characters, but when i transfer file to i_upload, each entries in i_upload can't exceed 255.
           does anyone know how to incease the lengh of entries?
          thanks in advance.
    DATA begin of i_upload,
               record(700) typc c,
              end of i_upload.
      CALL FUNCTION 'GUI_UPLOAD'
           EXPORTING
                FILENAME                      = INP_FILE
                FILETYPE                      = 'ASC'
                HAS_FIELD_SEPARATOR           = 'X'
           TABLES
                DATA_TAB                      = i_upload
           EXCEPTIONS
                FILE_OPEN_ERROR               = 1
                FILE_READ_ERROR               = 2
                NO_BATCH                      = 3
                GUI_REFUSE_FILETRANSFER       = 4
                INVALID_TYPE                  = 5
                UNKNOWN_ERROR                 = 6
                OTHERS                        = 7.

    Dear all,
    for string type, it also can't exceed 255.
    also, in OO, method gui_upload contains one FM gui_upload inside it.
    it doesn't work..
    do you have any other ways?
    Thanks
    Desmond

  • How to increase the width of ribbon button in mscrm 2013?

    Hi , we have  created a custom button ,but its text is  bit long. so we are not getting entire text on the form for this button.
    Could you please suggest , how we can increase width of the button.
    hari ________________________________________________________ If this post answers your question, please click "Mark As Answer" on the post and "Vote as Helpful"

    thank u for  quick response.
    Could you please provide the approach which is unsupported ? (if any?)
    hari ________________________________________________________ If this post answers your question, please click "Mark As Answer" on the post and "Vote as Helpful"

Maybe you are looking for

  • I got lightning to usb camera adapter but get fault message on ipad mine "cannot use device" the connected usb device requires too much power

    I tried to use lightning to usb camera adapter but every time I plug it into my ipad mine it give cannot use device. the connected usb device requires too much power. how could I use this attachment.

  • I need a query

    Hi I've a table with 3(THREE)columns like the following structure: desc acc Name Null? Type MCODE NOT NULL NUMBER(2) TYPE CHAR(1) BALANCE NUMBER(14,2) Select * from acc MCODE TYPE BALANCE 10 I 0 11 L 0 12 E 0 12 L 0 13 L 0 14 L 0 15 L 0 16 E 15468971

  • Item null when using PL/SQL function body returning SQL query

    I have an item P5_CUSTOMER_ID (text). Whatever be the value I enter in this text box, the PL/SQL seems to execute the ELSE condition. What am I missing? I am using 2.0 and 10g Oracle. Declare qry VARCHAR2(1000); Begin IF :P5_CUSTOMER_ID IS NOT NULL T

  • Sorting issue after upgrade from 9i to 10g

    Dear all, It is found that the sorting behavior is different after upgrade from 9i to 10g. In 9i, even if the SQL statement does not specify the ORDER BY clause, the sorting order is consistent for a particular SQL statement and most likely the seque

  • Discrete state-space representation in FPGA

    Hello all, My aim is to simulate a discrete state-space model is the cRIO FPGA (in order to use an observer). I am currently trying to simulate it on my computer without using the discrete state-space VI from the Control Design and Simulation toolbox