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

delete space between lines

Former Member
0 Likes
477

hi guyz,

i wanna delete the spaces between the lines in sapscript.....plz advise

regards

3 REPLIES 3
Read only

samanta_limbrada
Explorer
0 Likes
443

You have to modify the paragraph format.

Read only

former_member386202
Active Contributor
0 Likes
443

Hi,

Use condense statement

DATA: BEGIN OF NAME,

TITLE(8) VALUE ' Dr.',

FIRST_NAME(10) VALUE 'Michael',

SURNAME(10) VALUE 'Hofmann',

END OF NAME.

CONDENSE NAME NO-GAPS.

Regards,

Prashant

Read only

Former Member
0 Likes
443

Hi Sudheer,

I guess you r aware of this syntax: &symbol(Z)& use this it will supress the spaces between and even use this and c &symbol(c)& here symbol is nothing but the string u want to supress.

try this it works ..

Regards,

Sana.

reward if found helpful..