concatenate spaces in variable

Question: Hi,

how to cancatenate spaces in a variable.
I need 12 spaces in 15 char variable.
Please give me ur suggestions.

regards,
YP

Answer:
Hi,
>how to cancatenate spaces in a variable.
>I need 12 spaces in 15 char variable.
try to work with an offset:
DATA: c(15) TYPE c.
move 'ABC' TO c+12.

Georg Schwarz
Copyright ?2007 - 2008 www.jt77.com