Application Development 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: 

How to freeze a field on Classical Report output list

Former Member
0 Kudos

Is there a way by which i can freeze a field of the output list of a classical report, so that when i scroll towards right that field would not be moved.

7 REPLIES 7

Former Member
0 Kudos

I don't think its possible in classical report.

Regards,

Ravi

Former Member
0 Kudos

HI a a,

1 SET LEFT SCROLL-BOUNDARY.

use this command

(just see F1 help on it)

regards,

amit m.

0 Kudos

Hey thanks Ravi,

But where do i write this, the column that i want to freeze on the output list is the fourth one, i tried to use it like this:

WRITE:/2 <I_DETAILS>-MATNR COLOR COL_NORMAL.

SET LEFT SCROLL-BOUNDARY.

But it didn't work, could you please let me know what would be the right syntax.

0 Kudos

Hi Ravi,

I got it right thanks a lot man.

Regards

Nitin

0 Kudos

Hi again,

1. use like this (just copy paste in new program)

report abc line-size 200.

START-OF-SELECTION.

write 😕 '1234567890'.

write : 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

write : 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

write : 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

write 😕 '1234567890'.

write : 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

write : 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

write : 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.

*------- WRITE AT LAST

SET LEFT SCROLL-BOUNDARY column 5.

regards,

amit m.

Former Member
0 Kudos

Hi !

The best thing is it to place it in the TOP-OF-PAGE...

Regards

Rainer

former_member215188
Participant
0 Kudos

i usually write this at the bottom, after my last write statement.