2009 Jun 15 12:56 PM
Hello experts,
When i execute my report , i get the ALV report , after this i print this ALV to my spool,
I want to create in my report of the spool , Widthwise line after each of rows ,
How can i to do this ?
Thanks for the help.
Avi.
2009 Jun 15 1:23 PM
Hi,
try this way...
CONCATENATE 'NS'
sy-datum+4(4)
sy-uzeit INTO
wa_pri_params-plist.
* Creating Spool request ...
NEW-PAGE PRINT ON NO DIALOG PARAMETERS wa_pri_params.
WRITE : / text-s32.
ULINE.
LOOP AT t_error INTO wa_error. "ALV output table write to spool using format options and lines..
WRITE : / wa_error-text.
ENDLOOP.
Prabhudas
Hello experts,
When i execute my report , i get the ALV report , after this i print this ALV to my spool,
I want to create in my report of the spool , Widthwise line after each of rows ,
How can i to do this ?
Thanks for the help.
Avi.
2009 Jun 15 1:23 PM
Hi,
try this way...
CONCATENATE 'NS'
sy-datum+4(4)
sy-uzeit INTO
wa_pri_params-plist.
* Creating Spool request ...
NEW-PAGE PRINT ON NO DIALOG PARAMETERS wa_pri_params.
WRITE : / text-s32.
ULINE.
LOOP AT t_error INTO wa_error. "ALV output table write to spool using format options and lines..
WRITE : / wa_error-text.
ENDLOOP.
Prabhudas