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: 

Display Long Text

ashok_kumar24
Contributor
0 Kudos

Hi Experts,

I have a Long text of length 300 characters.

My requirement is to display the long text in a report column(100 Chars) in 3 equal lines.

Can anyone send me example code for this.

Thanks

K

1 REPLY 1

vinod_vemuru2
Active Contributor
0 Kudos

Hi Ashok,

Check below example.

Suppose u have 2 fields in ur o/p.


WRITE:/1 wa-f1,
            20 wa-f2+0(100),
           /20 wa-f2+100(100),
          /20 wa-f2+200(100).

"Here f2 is the field which holds ur 300 character text.

Hope it is clear.

Thanks,

Vinod.