‎2006 Aug 01 12:13 PM
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..
‎2006 Aug 01 12:15 PM
hi Dahar,
do this way..
<b>
concatenate 'ABCDEFG' s_bldat-low s_bldat-high into v_res.
write : v_res.</b>
‎2006 Aug 01 12:18 PM
write: /5 'ABCDEFG', 20 S_BLDAT-LOW, 30 'To', 40 S_BLDAT-HIGH.