2005 Jul 22 2:12 PM
hi folks,
I need a small adjustement here.
The code goes like this...
concatenate zdate1 wa-vavartyp zbunit zposcc
into wa1-zdateproductcode separated by space.
I get the data like 7/11 MO MET
ENT
I need to get the data zdate1 and wa-vavartyp in one line and zbunit and zposcc in the other line.
Can I adjust it here by increasing the space or so?
thanks
Santhosh
2005 Jul 22 2:20 PM
This may not help, but here is how you can add a carriage return to that string:
constants: c_crt type x value '0D'.
concatenate zdate1 wa-vavartyp c_crt zbunit zposcc
into wa1-zdateproductcode separated by space.
Cheers,
John
2005 Jul 22 2:20 PM
2005 Jul 22 3:00 PM
concatenate zdate1 wa-vavartyp <b>cl_abap_char_utilities=>cr_lf</b> zbunit zposcc
into wa1-zdateproductcode separated by space.
Regards
Raja
2005 Jul 22 3:28 PM
Thanks guys for your input. I changed the form settings for got it done.
Santhosh
2005 Jul 22 4:34 PM