cancel
Showing results for 
Search instead for 
Did you mean: 

ALV Grid Print Truncated

shah_viraj
Active Participant
0 Kudos

Hi,

I have a Z report which displays ALV grid with 18 columns. Now, when we take print of the report, some of the columns get truncated on A4 paper size.

Page formate is set as X_65_255.

How to print this ALV Grid on A4 size paper so that columns do not get truncated?

Thanks

Viraj

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

You may try to pass the print parameter in the REUSE_ALV_GRID_DISPLAY FM.

data : print type slis_print_alv.

print-no_change_print_params = 'X'.

  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

     EXPORTING

        IS_PRINT                               = print

      TABLES

        T_OUTABab                            = it_output

Former Member
0 Kudos

Hi Viraj,

Try this: page formate set to DINA4. And

REPORT zreportName line-size 124 no standard page heading line-count 095(001).

regards,

Archer

shah_viraj
Active Participant
0 Kudos

Hi Archer,

Currently

REPORT zreportname NO STANDARD PAGE HEADING LINE-COUNT 65 LINE-SIZE 245. is already in place.