Hello all,
I am using function module GET_PRINT_PARAMETERS
CALL FUNCTION 'GET_PRINT_PARAMETERS'
EXPORTING
DESTINATION = LOC_DEST
COPIES = WF_COPIES
LIST_NAME = WF_LISTNAME
LIST_TEXT = WF_LISTTEXT
IMMEDIATELY = ' '
RELEASE = ' '
NEW_LIST_ID = 'X'
EXPIRATION = WF_DAYS
LINE_SIZE = 132
LINE_COUNT = 65
LAYOUT = 'X_65_132'
SAP_COVER_PAGE = 'X'
RECEIVER = 'SAP*'
DEPARTMENT = ''
NO_DIALOG = 'X'
IMPORTING
OUT_PARAMETERS = WF_PARAMS
VALID = WF_VALID.
NEW-PAGE PRINT ON PARAMETERS WF_PARAMS NO DIALOG.
PERFORM WRITE_PDF_SUMMARY USING P_VALID P_COND P_ZMGC P_ZOGC P_PDF.
NEW-PAGE PRINT OFF.
But in my report there are 10 columns and in download file its showing only 6 columns .If I increase that size to X_65_200 Then it shows all columns But its not readable. Please tell me how can I use that fix size X_65_132 & it will show all columns .
Message was edited by:
megha waykar
Your total width for 10 columns must be greater than the 132 so, output is not coming properly.
If you are downloading the file you don't have to use this FM before the downloading. You can download the data by METHOD CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD
Regards,
Naimesh Patel
Hi Megha,
In the 1st statement of your report program, increase the line size.
REPORT ZTEST line-size 200.
Best regards,
Prashant
Add a comment