cancel
Showing results for 
Search instead for 
Did you mean: 

DUDE!

former_member622551
Participant
0 Kudos

Hello, can i use in a code node, the statement 'concatenate'?

If yes, how can i do it? I try it but doesn´t work.

Please help.

Thank you.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Not sure what is your requirement..

If you want to use concatente..Check this..

DATA: V_STRING TYPE STRING.

CONCATENATE 'This' 'is' 'my' 'string' INTO V_STRING SEPARATED BY SPACE.

WRITE:/ V_STRING.

Thanks,

Naren

Answers (0)