Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Widthwise line in my spool

Former Member
0 Likes
428

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
389

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.

1 REPLY 1
Read only

Former Member
0 Likes
390

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