Hi,
i have a variable like this :
DATA l_c type char2.
This variable can receive 1 or 2 characters, for example :
l_c = 'C'.
or
l_c = 'CA'.
In first case, i'd like to have a space at the end like
'C '.
How can i do this please ?
Cheers