‎2008 Apr 03 2:10 PM
Hi,
How to get more than 1 line gap between two strings while concatenating two strings.
Regards,
Neerup
‎2008 Apr 03 2:15 PM
use this
concatenate A
CL_ABAP_CHAR_UTILITIES=>CR_LF
CL_ABAP_CHAR_UTILITIES=>CR_LF
CL_ABAP_CHAR_UTILITIES=>CR_LF
CL_ABAP_CHAR_UTILITIES=>CR_LF
etc.
B
into lv_string.
‎2008 Apr 03 2:15 PM
use this
concatenate A
CL_ABAP_CHAR_UTILITIES=>CR_LF
CL_ABAP_CHAR_UTILITIES=>CR_LF
CL_ABAP_CHAR_UTILITIES=>CR_LF
CL_ABAP_CHAR_UTILITIES=>CR_LF
etc.
B
into lv_string.
‎2008 Apr 03 2:33 PM
Hi,
Thanks for the quick reply....
I am still getting spaces only.....i want 2 or more lines between those two strings.
like
A
B
C
regards,
neerup.
‎2008 Apr 03 2:23 PM
Try with ' '
(space within Quotes)
Else
Do normal Concatenation with single space and then use SPLIT keywork (SPLIT wher the space is there) and the again Concatenate.
the flow is CONCATENATE (with single space)
then SPLIT (at space)
then CONCATENATE (with single space)