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: 

For Wrapping of Text

Former Member
0 Kudos

Hi,

is there any way for wrapping text in ABAP which is similar to MS-word or MS-excel.

Currently i have 3 fields in an internal table.

first field is of length 10,

second field is of length 40,

third field of length 256.

Third field is mainly used for Notes.

client said that report coulmn length should be 80.

after 80 i need to wrap the text in next line, with out affecting display of other rows.

Please guide me.

4 REPLIES 4

former_member182354
Contributor
0 Kudos

Hi,

Use Line-size option in Report statement.

Raghav

Former Member
0 Kudos

Hi,

Try using Function Module:RKD_WORD_WRAP

Thanks and Regards,

Neha Kapoor

Former Member
0 Kudos

use FM RKD_WORD_WRAP

call function 'RKD_WORD_WRAP'

exporting

textline = idiagline

outputlen = 80

importing

out_line1 = idiag_1

out_line2 = idiag_2

exceptions

outputlen_too_large = 0

others = 0.

Regards,

Joy.

Former Member
0 Kudos

hiiii

refer to following link

regards

twinkal