Application Development and Automation 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: 
Read only

concatenating string with a variable

Former Member
0 Likes
428

Hello,

i have used a 'select-options' in my report. I want to display the low and high option of it as a text on the top of my page, sumthing like.

write: 'ABCDEFG' + s_bldat-low + 'to' + s_bldat-high.

how do that ?

Thanks..

2 REPLIES 2
Read only

Former Member
0 Likes
397

hi Dahar,

do this way..

<b>

concatenate 'ABCDEFG' s_bldat-low s_bldat-high into v_res.

write : v_res.

</b>

Read only

Former Member
0 Likes
397

write: /5 'ABCDEFG', 20 S_BLDAT-LOW, 30 'To', 40 S_BLDAT-HIGH.