You are on page 1of 1

*&---------------------------------------------------------------------*

*& Report ZTEST_123


*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*

REPORT ZTEST_123.

data: lv_string(20) type c value '30'.


data: lv_string1(20) type c value 'i1'.

do 9 times.
concatenate '' lv_string1 into lv_string1 separated by space.
enddo.

CONCATENATE lv_string lv_string1 into lv_string.

write: lv_string .

You might also like