Code :
REPORT ZVP_DEMO.
DATA: S1 TYPE CHAR50,
S2 TYPE CHAR50,
S3 TYPE CHAR50.
S1 = 'HELLO'.
S2 = 'WORLD'.
CONCATENATE S1 S2 INTO S3 SEPARATED BY SPACE.
WRITE: S3.
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.
REPORT ZVP_DEMO.
DATA: S1 TYPE CHAR50,
S2 TYPE CHAR50,
S3 TYPE CHAR50.
S1 = 'HELLO'.
S2 = 'WORLD'.
CONCATENATE S1 S2 INTO S3 SEPARATED BY SPACE.
WRITE: S3.
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