&& 를 이용해 바로 문자열을 연결할 수 있다.
이전 버젼에서는 concatenate 명령어를 이용해야 했다.
REPORT ZNEW_001.
data : gv_str type string.
gv_str = 'http://' && 'SAPjoy' && '.co.kr'.
WRITE gv_str.
결과 :
http://SAPjoy.co.kr
&& 를 이용해 바로 문자열을 연결할 수 있다.
이전 버젼에서는 concatenate 명령어를 이용해야 했다.
REPORT ZNEW_001.
data : gv_str type string.
gv_str = 'http://' && 'SAPjoy' && '.co.kr'.
WRITE gv_str.
결과 :
http://SAPjoy.co.kr