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

Similar Messages

  • Increase line width in classical report

    Hi
    I am customizing the ME2N  transaction, here I want to increase the line width and add few more fields to the output.
    How to do this?
    ..urgent help requiered please......

    Hello there,
    Make the changes as folows :::
    REPORT <Report Name> no standard page heading line-size 1023.
    This will solve your problem.
    Bu 1023 isthe maximum. Cannot go beyond this.
    reward if useful.
    regards,

  • How to increase line-size in Function module

    Hi All,
        How to increase line-size in function module..
    I am displaying a list in function module.The output is of width more than 150..
    Regards,
    Srinivas

    Hi Srini,
    U can try by setting the system variable SY-LINSZ = 150.
    or
    Use new page command.
    Vasanth

  • How to Increase Font Size in Normal List Display

    Hi All,
    I needs to increase the font size in List (Normal List not ALV). How can i achieve this one. I have used Print-control option but its not working fine for me .
    Please help me in this. Thanks in Advance.
    Regards,
    Sreedhar.T

    >
    Gautham Vangaveti wrote:
    > You can use classes for the same.
    >
    > check sample program DD_STYLE_TABLE.
    Are you sure that we can enlarge the font size in classical reports?
    I think we can utmost use  intensified/emphasize options as an work around.
    Cheers

  • Lines truncated in classical report when called from an interactive alv rep

    hi experts,
      i have an alv report after clicking a field in that alv report it has to go another screen(interactive) which is shown in classical format.
    the problem is when i am moving to classical format the columns  are getting truncated ...i tried increasing the line size of the report but no use.can any one guide me?
    with thanks in advance,
    syed

    Hi,
        The only option what you have is to write like below ...
    loop at itab.
    if v_count = 0.
       perform write_top_of_page.
    endif.
    ".... write your report ...
    v_count = v_count + 1.
    if v_count = 60. "<-- you want top-of-page after 60 lines (60 records per page.)
      clear v_count.
    endif.
    endloop.
    Regards,
    Srini.

  • Line number in Classical Report

    Hi All,
    How to get current line number in Classical Report?
    i want to show that in my o/p.
    regards,
    Anuj

    Hi Anuj
    Please try like this
    there are 2 ways.
    READ CURRENT LINE FIELD VALUE <fieldname>.
    READ CURRENT LINE.
    first statement does'nt work on numeric type fields especially when there are commas ',' like 5,600,00.
    it'll give you dump.
    but always works on CHAR type.
    so in your case use second statement. though you're reading entire row but use only single field what ever you want.
    check this example.
    DATA : BEGIN OF itab OCCURS 0,
    matnr LIKE eban-matnr,
    menge LIKE eban-menge,
    END OF itab.
    AT LINE-SELECTION.
    READ CURRENT LINE.
    WRITE :/ itab-menge.
    START-OF-SELECTION.
    SELECT matnr menge INTO TABLE itab FROM eban UP TO
    10 ROWS WHERE matnr NE space.
    LOOP AT itab.
    WRITE :/ itab-matnr, itab-menge.
    HIDE : itab-matnr, itab-menge.
    ENDLOOP.
    Thanks
    venkat

  • How to increase line-size beyond 255

    hi all,
    In my classical report ,  columns after line-size 255 was cut and display in another row , but i want it to continue in a single row beyond 255, i tried and given
    line-size 400, But it's not giving the required result. Please help and provide the solution for this problem.
    thanks in advance,
    Regards,
    Vivek

    Try this -
    for writing the fields after 255 characters you have to use WRITE AT statement, instead of WRITE, as WRITE will not work for line-size > 255 chars.
    Regards,
    Amit
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

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

  • 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

  • Classical Report display

    Hi,
    I need to display classical report with following layout
    Material     Jan         Feb        march        april -
    Total
    ABC
           SD     10         20             30                               60
           SE     10         20                                               30
    In my internal table I have month wise data.
    How to display it in one line under respective months.
    For e.g. in internal table I have two rows of SD with quantity is two different months. Now I need to display this in above format
    Please help.

    Hi Vanita,
    Check the following code, this is similar to your requirement...
    Row wise output:
         1.000     100.001
         1.000     100.002
         1.000     100.003
         1.000     100.003
         1.000     100.004
    Column wise output:
         1.000       1.000       1.000       1.000       1.000
       100.001     100.002     100.003     100.003     100.004
    TYPES: BEGIN OF ty_tab,
           a TYPE i,
           b TYPE i,
           END OF ty_tab.
    TYPES: BEGIN OF ty_fields,
           field TYPE c,
           END OF ty_fields.
    DATA: it_tab TYPE STANDARD TABLE OF ty_tab WITH HEADER LINE,
          it_fields TYPE STANDARD TABLE OF ty_fields, "Table which stores the field names
          wa_fields TYPE ty_fields,
          wa_tab TYPE ty_tab.
    DATA: w_value TYPE ty_fields-field.
    FIELD-SYMBOLS: <fs> TYPE ANY.
    wa_tab-a = 1000.
    wa_tab-b = 100001.
    APPEND wa_tab TO it_tab.
    wa_tab-a = 1000.
    wa_tab-b = 100002.
    APPEND wa_tab TO it_tab.
    wa_tab-a = 1000.
    wa_tab-b = 100003.
    APPEND wa_tab TO it_tab.
    wa_tab-a = 1000.
    wa_tab-b = 100003.
    APPEND wa_tab TO it_tab.
    wa_tab-a = 1000.
    wa_tab-b = 100004.
    APPEND wa_tab TO it_tab.
    wa_fields-field = 'A'. "In this example columns are A and B
    APPEND wa_fields TO it_fields.
    wa_fields-field = 'B'.
    APPEND wa_fields TO it_fields.
    WRITE:/ 'Row wise output:'.
    LOOP AT it_tab.
      WRITE: / it_tab-a,
               it_tab-b.
    ENDLOOP.
    WRITE:/,/, 'Column wise output:',/.
    LOOP AT it_fields INTO wa_fields. "Dispalying columnwise o/p
      w_value = wa_fields-field.
      LOOP AT it_tab INTO wa_tab.
        ASSIGN COMPONENT w_value OF STRUCTURE wa_tab TO <fs>.
        WRITE: <fs>.
        UNASSIGN <fs>.
      ENDLOOP.
      WRITE: /.
    ENDLOOP.
    Modify this example to ur requirement.
    Revert incase of any issues.
    Regards,
    Manoj Kumar P

  • How to print watermark in classical reports?

    How to display the watermark in classical reports?

    hi
    go to se78 graphics -> enter
    BMAP(BITMAP IMAGES)
    Name MYBMP
    select radio button
    color ->import
    filename: c:\pictures\123.bmp.
    name : mybmp
    description : BMP ->continur ->save.(activate it)
    now go to se71->choose the prog -> layout ->right click ->create graphics.
    utilities -> printing test -> output device -> LP01.
    Hope this helps
    if it helped, you can acknowledge the same by rewarding
    regards
    dinesh

  • How to get theoutput of classical report in table format

    hi all,
                   i am new to this forum.i want the help from experts over here.for example if we create the program in classical report for employee details.how to get the output in tabular column format.pls reply to me.
          Thanks in advance

    HI all,
    I am new here. Currently I am trying to create a program which is able to compare and validate key fields from different tables.
    my code looks like this:
    *~Internal Tables
    DATA:
      LT/RAB/KPI_CONF TYPE STANDARD TABLE OF /RAB/KPI_CONF,
      LT/RAB/KPI_MAPP TYPE STANDARD TABLE OF /RABL/KPI_MAPP,
      LT/RABL/KPI_HEAD TYPE STANDARD TABLE OF /RABL/KPI_HEAD.
    DATA:
      /RAB/KPI_CONF_NEW TYPE SORTED TABLE OF /RAB/KPI_CONF WITH UNIQUE KEY XX100011 XX100004 XX100022 XX100010,
      /RAB/KPI_MAPP_NEW TYPE SORTED TABLE OF /RAB/KPI_MAPP WITH UNIQUE KEY XX100009 XX000197 XX100007 XX100014,
      /RAB/KPI_HEAD_NEW TYPE SORTED TABLE OF /RAB/KPI_HEAD WITH UNIQUE KEY XX100004.
    DATA: GWA_/RAB/KPI_CONF TYPE /RAB/KPI_CONF,
          GWA_/RAB/KPI_MAPP TYPE /RAB/KPI_MAPP,
          GWA_/RAB/KPI_HEAD TYPE /RAB/KPI_HEAD.
    *Fill the internal table with database values
    PERFORM get_existing_records.
    FORM GET_EXISTING_RECORDS.
      SELECT *
        FROM /RABL/KPI_CONF
        INTO TABLE LT/RAB/KPI_CONF.
      SELECT *
          FROM /RAB/KPI_MAPP
          INTO TABLE LT/RAB/KPI_MAPP.
      SELECT *
          FROM /RAB/KPI_HEAD
          INTO TABLE LT/RAB/KPI_HEAD.
      LOOP AT LT/RAB/KPI_CONF INTO GWA_/RAB/KPI_CONF.
        READ TABLE LT/RAB/KPI_HEAD INTO GWA_/RAB/KPI_HEAD with key XX100004 = GWA_/RAB/KPI_CONF-XX100004.
        IF SY-SUBRC <> 0.
          WRITE:  'No header id found in formula'.
        ENDIF.
        LOOP AT LT/RAB/KPI_HEAD INTO GWA_/RAB/KPI_HEAD.
          READ TABLE LT/RAB/KPI_MAPP INTO GWA_/RAB/KPI_MAPP with key XX100009 = GWA_/RAB/KPI_HEAD-XX100012.
          IF SY-SUBRC <> 0.
            WRITE: ' no selection ID found in table'.
            endif.
        ENDLOOP.
            ENDLOOP.
    ENDFORM.
    I would like to have a output report in which the results from my above statement are displayed.
    Any advise is welcome
    Thanks.
    Rabie

  • 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

  • Header size in classical report

    Hi all,
       I  made a classical report. I want to give header font size 12 with italic.My Header title is 'PURCHASE DETAILS'. but header is comming in small font. can anybody tell me how can I give font size 12 with italic.
    Thanks,
    Rakesh

    Hi Rakesh,
    Refer to this link.
    ALV_LIST_DISPLAY Report Header Font Size
    Thanks!!

  • How increase font size in safari?

    Not the text size in windows but how increase the font size of the bookmarks menu bar and the size of the url display

    Those can't be increased directly without increasing the menubar font size and decreasing the amount of available real estate for windows to be portrayed on all programs. You have a couple of built-in options:
    1. Apple menu -> System Preferences -> Displays -> change to a lower resolution.
    2. Apple menu -> System Preferences -> Universal Access -> change magnification.
    Other options on http://www.versiontracker.com/ or http://www.macupdate.com/ may exist in the public domain.

Maybe you are looking for

  • Use a shared hard drive for Time Machine

    Hi all, I will be buying a Macbook Pro soon, and I know that I will be using the Time Machine feature a lot. I have a wireless network at home, so I would like to know if I can use an external hard drive, hook it to my PC then share it on the network

  • Repeat events are not deleted...

    Does anyone know how to remove the repeated event in iCal especially after it has been edited to be an item designated as "all future events"? I attempted to delete several events that were assigned as repeating by going to the original event and edi

  • Dreamweaver CS5 XML Parsing Error

    Hi All, I keep having to delete my workspace XML file to get Dreamweaver to start up, getting a little tedious now as it keeps happening. Anyone know of a permanent fix? or at least heard of this problem happening reguarly? Thanks, Trevor

  • What's going on with the PowerMac G5's and wireless??

    Like a ton bunch of others, I'm having serious issues with my wireless capabilities in my PM G5. It's a dual core 2.0-last revision with a AP/BT combo card. I can see 2 bars when I start up (which is very weak for where the computer is) and as soon a

  • Website creation

    Hello, I'm hoping that someone can advise if Dreamweaver is the correct (and best) program to publish and maintain a website with files and folders which have been created for us by a graphic designer using a Mac with Flash and Photoshop. I understan