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

Classical Report Display Problem

Former Member
0 Likes
368

Dear Experts,

I hv created a report for service order detail which contains lot of columns. To display i hv written following code:



format color 3 intensified off.

   WRITE: /1(880) sy-uline.
   WRITE:  /1 sy-vline,2 'Sl.No.' color 3,8 sy-vline,
            9 'Maintenance Plan' color 3,25 sy-vline,
           26 'Notification No.' color 3, 42 sy-vline,
           43 'Order No.' color 3, 54 sy-vline.
      *bold* SET LEFT SCROLL-BOUNDARY.
    WRITE: 55 'Order Description' color 3, 96 sy-vline,

But when i run the report and scroll horizontally, it scroll to left but also display the first character of column of order description like 'O' and and all rows of the same column.

Can anyone help me in this.

Regards,

Maverick

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
336

Hi

Try


SET LEFT SCROLL-BOUNDARY COLUMN 54.

Pushpraj

2 REPLIES 2
Read only

Former Member
0 Likes
337

Hi

Try


SET LEFT SCROLL-BOUNDARY COLUMN 54.

Pushpraj

Read only

Former Member
0 Likes
336

Hi,

I tried executing the code snippet which you gave and I am getting a proper output.

Could you please elaborate your problem.

Thanks,

Harini