Hi ,Maximum line size in the report

What is the maximum line size inthe report.Some are saying 1023.Some are saying 255 characters.I am full confusing this concept.
And if the line size mentiones in less than the length of the data in the write statement ,what happened?
Sometimes it is coming in the next line , sometimes it is coming in the next line
Please anyone provide the solutin

hi,
The line width determines the number of characters in the line buffer as well as the number of columns in the list displayed. The value width must be a positive numeric literal. The maximum line width is 1,023 characters.
When the LINE-SIZE is not specified, the line width of the basic list is set to a standard width based on the window width of the current Dynpro, but is at least as wide as a standard size SAP window. For the standard width, the contents of sy-linsz is 0. The LINE-SIZE overwrites the value of the like-named LINE-SIZE addition to the statement SUBMIT and can be overwritten during list creation with the like-named LINE-SIZE addition to the statement NEW-PAGE.
For screen lists, you should use the standard value since, as a rule, page breaks defaulted through LINE-COUNT are not adjusted to the window size.
You should also use the standard value for print lists, so that you can still select the page size on a printer-specific basis. A print list should be created in such a way so that it can handle every page size.
Specifying a fixed line count is only useful for form-type lists with a fixed page layout. Here, however, you should always check whether such forms can be created by other means, such as SAPScript forms.
when line size is more than your data... your ouput screen will be dragging after all your output display..So bettery ou should use the standard value .
Regards,
Muhammed Safel

Similar Messages

  • Maximum line size for OO ALV

    Hi,
    1) What is the maximum line size for OO ALV?
    Or in the other way round, how is the maximum column size for OO ALV when i using the method below:
      DATA: r_grid TYPE REF TO cl_salv_form_layout_grid.
      CREATE OBJECT r_grid.
      r_grid->create_text(
          row     = 2
          column  = 2
          text    = sy-mandt ).
    2) Another question, how to change the below time format:
    223801 -> 22:38:01?
    When I try to use sy-uzeit to display the header in ALV like below:
      CREATE OBJECT r_grid.
      r_grid->create_text(
          row     = 2
          column  = 2
          text    = sy-uzeit ).
    The ALV will be displaying 223801. How i can convert to format 22:38:01 and display it in ALV?
    Thanks.

    Hi,
    For your second qn.,try by declaring an extra field of type character of length 10 in the structure you are using for ALV.
    After that ,after you appended the records,just try the follg...
    loop at itab into wa.
    concatenate f10(2) ':' f12(2) ':' f1+4(2) into f2.
    modify itab from wa transporting f2 index sy-tabix.
    endloop.

  • How to change font size, maximum column size in the result screen ?

    hi All
    That's great when using SQL Dev.
    But I also have a trouble that how to change font size, maximum column size in the result screen ?
    My users think that font in result screen is shown very small, and whenever the data in each colum is long then it's not shown full data in column, they must double click for extend the size. Have the option to default the max size for showing full data in each column ? I try but still not to do that .
    Appreciate for anyone to help us.
    Thanks all.
    Sigmasvn

    You can't change the font for the results screen yet, however you will be able to select an auto-fit option for selected columns, so if some columns have slitghtly wider text you'll be able to set the column widths to handle these wider columns.
    Also, there s the option of switching the layout of a record in the grid.
    Sue

  • Is there a maximum program size for the AWM GUI?

    Is there a maximum program size for the AWM GUI?
    I have a program that I migrated from Oracle Exress to Oracle 9i. The program runs fine, but I get buffer errors whenever I edit it with the Analytic Workspace Manager GUI. Only my longest program has this problem.
    Has anyone seen this before? Is there a fix/workaround?
    Thank you,
    James

    This problem is solved with the 10.0.0.1.0 AWM client, which is on the 10G CD.
    James

  • How to increase font size in the report when emailed as PDF

    How do I increase the font size of the report when I distribute the report as PDF to the users. I tried using different paper sizes in the LayOut tab in Broad Caster and Orientations. When I open the PDF from the mail I see the report shrinked and not readable, but when I magnify the report the numbers are visible with no loss in quality. I cannot give the users to print a shrinked PDF file. I would like to see a visiable font and print the same size what I see.

    The size of the font is increased by selecting a bigger page size while emailing. This will automatically increase the size of the page.

  • FREE SPACE : To find the size of the report on INFO VIEW.

    Hello,
    We have recently started using BO XI R2.Could anybody please let us know how to find the size of reports from INFO VIEW ?
    Please find a brief of the situation we are currently encountering
    We use the web portal " INFOVIEW PROD " to access all the reports in BO. However, the all these reports are stored on the E drive of a production machine . Now the  E drive has reached 80% of its capacity and we need to free some space . We cannot delete files directly from E drive of the machine as it stores reports merely on the basis of numbers .The other option is to delete the unused reports from web portal. However , we are talking about 1000's of reports.Also , from the INFO VIEW we are not able to determine the size of the report to delete based on size and unusability.
    We would like some input on how to tackle this issue.
    Regards,
    BO USER R2

    Hello,
    Well that's really surprising to see that you have recently started using XIR2 since this is already an end of life product from SAP Business Objects.
    Well nevertheless there is an option to check these details.
    There is tool known as "Query Builder" in BOE
    The direct URL to start this is: - http://<servername>:<port>/AdminTools/querybuilder/ie.jsp
    and provide below query: -
    select SI_ID, SI_NAME,SI_FILES,SI_SIZE from CI_INFOOBJECTS where SI_KIND='Webi' Order BY SI_SIZE DESC
    SI_ID: - ID of the infoobject.
    SI_NAME: - name of the object
    Under SI_FILES you will get SI_PATH which will tell you the location from IFRS
    SI_SIZE: will tell you the size.
    But I would like to highlight one thing you need to check the instances of the document as well.
    Don't just start deleting everything, it can create more problems with the system.
    Take the backup of IFRS, OFRS and CMS DB as well.
    My reply is just to tell how you can find the webi document according to size and IFRS path
    Thanks,
    Vivek
    Edited by: Vivek Chauhan on Sep 12, 2011 1:50 PM

  • Don't want horizontal scroll therefore want to reduce size of the report

    hi
    pls help me.I don't want horizontal scroll in my report.Some of the columns are going out of the window.
    therefore I want to reduce the size of the report.cant found any thing to do this.
    BHARAT THOSAR

    I had the same problem and found help here in the forum. I think it was Vikas who gave me the following tip:
    In the CSS Style of your column attributes type something like this:
    display:block;width:100px;overflow:hidden;
    in order to determine the width of your column. You got to play arround with this a bit to get
    the result you expect.
    Denes Kubicek

  • How  2 increase line size of  classical report displayed thru  modular prog

    Hi guys,
    I have displayed a classical report through a modular program using LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 130.
    But now i want to increase the line-size of my classical report as only half of the report is getting displayed.
    I tried the following thing:-
    SY-LINSZ = 125.
    perform f_report_pass.
    *Print repost showing records which were not saved
    perform f_report_fail.
    LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 130.
    but that did not work.
    Please help me increase the line size.
    Regards
    Rahul Gambhir

    Hi Vasanth
    I am using a modular program hence there isnt any statement :-
    REPORT ZXXX NO STANDARD PAGEHEADING LINE-SIZE 255
    This is the code that I am using :-
    SY-LINSZ = 200.
    perform f_report_pass.
    *Print repost showing records which were not saved
    perform f_report_fail.
    LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 130.
    Regards
    Rahul

  • Blank lines showing in the report

    Hi,
    When i run MEIS report i get a blank line for the colomn - Special unit of measure (qty filed) where as for some PO's it shows the qty and for some Po's it does not show.
    Please tell what would be the problem with this colonm why is it not showing qty in that colonm
    Thanks

    Hi David,
    You need to maintain the Supplementary unit for the Commodity codes then it will display in the report.
    Thansk,John

  • Folder/Public Folder - What is the maximum file size before the URL created no longer works

    Hi,
    I have received links to files in beehive folder, where the URL will not load as the file name is to long and it's reach some type of maximum display limit for the URL.
    Is there a maximum document file name length before the URL hit some type of cut of point?
    For example if the document is in a folder, within a folder, within a folder and then the file name, how long can the file name be or how many folders can you go down to in the document area before some type of cut of limit is reached.
    I will locate the example as I am seeing this a lot when the URL comes from a specific team and there seem to be a lot of folders within folders.
    There was nothing in the documentation that I could find - Thanks in advance for your help.

    Miriam,
    The length of the URL is the critical factor in the access to the sub-folders - we have had issues with users having very long folder names without a great depth of folders. There is no actual limit on the depth of the folder structure - I just created 10 folders nested below the Documents area- admittedly the folder names were Documents>1>2>3>4>5>6>7>8>9>10. In the bug database there have been issues where the depth has been up to 50, though the issue has been mainly due to the time taken to get the details of the deep nesting not the actual number of nested folders. In practice a limit of 30 seems to be the point at which the performance can deteriorate so that is the limit we would advise.
    The client used seems to have an influence as well. IE has a limit on the URL of 2048 but it does not seem to be this limit that is hit so there is probably a cut-off at the lower number in the handler. The other clients webDAV, OBEE, OBEO and the Desktop Integration Server supplied with WebCenter have different reactions to deeply nested folders.
    However there was a proposed fix, for a future version which will not now appear, in OBEO and OBEE to report an error if you wanted more than nested 30 folders , though you could go as deep as 50 if the folder names were limited.
    My advice - keep the folder names as short as you can and try other clients - which all work on BeehiveOnline as well as stbeehive as the depth that can be handled is client dependent.
    Phil

  • How to increase the font size of the report output in the printout.

    Hi Team,
    i have a requirement like to print the report output as a direct print from an internal table.I am using the below mentioned code, the output is printing fine but the Font size of the output text is so small so i need to increase the font size of the text of output data.
    call function 'GET_PRINT_PARAMETERS'
       exporting
         immediately                    = 'X'
         line_count                     = 65
         line_size                      = 320
         mode                           = 'CURRENT'
         no_dialog                      = ' '
         release                        = 'X'
         user                           = sy-uname
       importing
         out_parameters                 = st_param
       exceptions
         archive_info_not_found         = 1
         invalid_print_params           = 2
         invalid_archive_params         = 3
         others                         = 4.
      if sy-subrc eq 0.
        new-page print on parameters st_param no dialog.
    could you please suggest me how to increase the font size while printing the report output..
    Thanks in Advance.
    Puneet.

    hey,
    in our system when we click on print. on widow is coming.
    there is a properties button.
    we click on it.
    there FORMAT----AND then we select forat from there and then printing .
    not sure. but check on ur system. is there properites button.
    HI,
    READ THIS,
    You can specify attributes such as the character width and font size in the device type formatting yourself.
    contact ur basis team .
    in the report PRINT-CONTROL SIZE option is there. try to find more o this.

  • Count of no of line items in the report

    Hi All,
    I have the following reporting requirement.Can anybody please provide me the solution.
    Data in the cube
    User id    Accounting Doc No      Lineitem    Amount
    abc1          10001                                 001                   100
    abc1        10001                                  002                   100                        
    abc1         10001                                  003                    100
    abc2         10002                                  001                   1000
    abc2         10002                                  002                   1100                        
    abc1          10003                                 001                    100
    Requirement:
    The report output shuold look like this
    User id    No of Accounting Docs     Total no of Lineitem count   Amount
    abc1                          2                                         4                                                400
    abc2                         1                                            2                                              2100
    I got the count of No of accounting documents.For lineietms I am unable to Get the count.
    The system is version BI7.0
    Thanks for your time.
    Srinivas

    Hi Srenevas,
    Check out the following document. This might help you.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/009819ab-c96e-2910-bbb2-c85f7bdec04a
    regards,
    Rakesh

  • How to get the size of the report using RE sdk or query?

    Hi,
    I want the size of report using RE sdk or using query.
    How can i get this?
    Please help
    Thanks in advance
    Amol Mali

    Thanks for the reply.
    I want the File Size
    How can i get it?
    Thanks in advance
    Amol Mali

  • Maximum harddrive size for the

    I have the hp pavilion slimline s3712f and my SATA internal harddrive crashed.  What is the maximum size that I can intall in this system? I have my system restore disc.
    This question was solved.
    View Solution.

    MarilynFish wrote:
    I have the hp pavilion slimline s3712f and my SATA internal harddrive crashed.  What is the maximum size that I can intall in this system? I have my system restore disc.
    Hi,
    This says 500GB:
    http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&taskId=120&prodSeriesId=...
    However, a 750GB hard drive might work too. I can't say for sure as your pc is a desktop and this section is for laptops but the recovery disk/s may not work on a much bigger drive than the original one anyway. 
    Dv6-7000 /Full HD/Core i5-3360M/GF 650M/Corsair 8GB/Intel 7260AC/Samsung Pro 256GB
    Testing - HP 15-p000
    HP Touchpad provided by HP
    Currently on Debian Wheeze
    *Please, help other users with the same issue by marking your solved topics as "Accept as Solution"*

  • LINE-SIZE

    Hi all,
    I have to develop a report in ALV LIST LAYOUT, and i want to know which is the maximum number of characters possible at Line. I have read that it´s 255, but i need a longer line.
    Thank you beforehand,
    Regards.

    HI,
    specify the line-size in the report statement.
    report ztest line-size 400.
    OR
    i mean in filedcatalog Property FILEDCAT-NO_DISPLAY should not be equal to 'X'.
    This may be the problem in your case.
    Thank you,
    Gopi.S

Maybe you are looking for

  • The latest Divx 7 + Mac OS 10.5.8 ? DOESN'T WORK! At least for me...

    I already posted this on DIVX LABS, without getting ANY help, also on Macrumors, without getting ANY help.... no I hope you guys here can help me Hello, I hope somebody can help me here since I didn't find help on that topic somewhere.... I downloade

  • Keep getting error 69 with iTunes 5.0, and it wont let me

    keep getting error 69 with iTunes 5.0... Im pretty sure its the version's fault, but it wont let me install a previous version I have on CD either. Even after uninstalling iTunes I get error "1623: installation failed" everytime I try to install the

  • Keyborad layout in new models

    Hi: I've noticed that in new models (T410 and so on) there's a change in the keyboard layout, so now there's a double sized "Supr." key instead of the "Insert/Supr." keys. Is there an option keyboard with the old layout? I've a T400 which I'm thinkin

  • Tomcat Setup Problems

    I am setting up Tomcat in an attempt to complete the Java Server Pages Fundamentals tutorial. I am new to JSP so please bear with me. I have followed the directions for installing Tomcat and referenced posted topics in the forum archives with no succ

  • Outbound emails from one specific email address blocked by Exchange 2013

    Hi We have a hybrid environment Exchange Online and are using Exchange 2013 as hybrid server. We have an application that submits emails to Exchange using SMTP and sends emails from [email protected] Since almost half of our user base is already in E