Hello Guru,
I am new to ABAP. I have one small problem. please help me.
My problem is :
DATA : INDEX LIKE BKPF-BELNR.
DATA : SUM LIKE BKPF-BELNR.
SUM = INDEX.
SUM = SUM + 1.
INDEX and SUM are 10 character. if i give INDEX = 0100000023.
SUM ALSO SHOUD COME 0100000024. But SUM is coming 1000000024 by missing one zero in left.
so please let me know how i can avoide that.