How is it possible avoid zeros in the integer type and pass space?

i define as
DATA : A TYPE I .
DATA B TYPE I.
B = 2.
WRITE: A , B.
OUTPUT IS : 0  2.
I WANT a to be space ...as it is integer type default is zero is there any keyword to avoid zeros to output  in integers type???
Expect output :  (space) 2.
Sas
Edited by: saslove sap on Jul 20, 2009 10:57 AM

Hi,
Try this.
WRITE: A no-zero ,
            B no-zero.
for this output.
OUTPUT IS : 0 2.
Regards,
Vijay

Similar Messages

Maybe you are looking for