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: 

delimiters in wrapping text

Former Member
0 Kudos

Hi,

I am using fm RKD_WORD_WRAP to wrap text from 36 character line table(ztab) into a table of type tline(ztline).

So I have to append more than 1 lines of ztab into ztline.

There should be a second record only if space between 2 words is ' ' (2 spaces).

How do I give this condition in the fm.

I tried giving double spaces, but it didnt accept.

any suggestions???

thanks,

goldie.

2 REPLIES 2

Former Member
0 Kudos

Goldie,

Declare a Variable like

Data : Delimit(2) value ' ' . (Two Bank spaces with in the Paranthesis)

and Pass Delimit in your FM.

This shud help.

Vinodh Balakrishnan

0 Kudos

Thank you for your suggestion.

But It didnt work in my case, as I am trying to increase the line size.

This is not an issue anymore, talked to my boss :).

Thanks though.

~goldie