F Concatenation program in SAP ABAP | CodeTheta

Concatenation program in SAP ABAP

August 29, 2019

Code :
REPORT ZVP_DEMO.

DATAS1 TYPE CHAR50,
      S2 TYPE CHAR50,
      S3 TYPE CHAR50.

S1 'HELLO'.
S2 'WORLD'.
CONCATENATE S1 S2 INTO S3 SEPARATED BY SPACE.

WRITES3.



Output :
HELLO WORLD

IDE Used To Test This Code : SAP Login 730.

Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us.We will reply you as soon as possible.

Post a Comment