‎2007 Dec 14 6:34 AM
hi guyz,
i wanna delete the spaces between the lines in sapscript.....plz advise
regards
‎2007 Dec 14 6:44 AM
‎2007 Dec 14 6:45 AM
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
‎2007 Dec 14 6:47 AM
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..