Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

help with concatente

Former Member
0 Kudos

hallow

i wont to concatete all the value that i get in wa_mail_addr into field like char255

how i do that?

regards

SELECT value

FROM yhr_parameters " Adress Table

INTO wa_mail_addr

WHERE title = 'YHR'

AND subtitle = 'MU'

AND name = 'SEND_MAIL'.

endselect.

1 REPLY 1

Former Member
0 Kudos

data : v_mail(255).

SELECT value

FROM yhr_parameters " Adress Table

INTO wa_mail_addr

WHERE title = 'YHR'

AND subtitle = 'MU'

AND name = 'SEND_MAIL'.

<b>concatenate v_mail wa_mail_addr into v_mail.</b>

endselect.