‎2008 Oct 22 12:10 PM
Is there any system variable where i can assign the number like 0 1 2 3 4 ............9
For alphabets we have sy-abcde similarly i need a system-variable where i can assign the numbers....
‎2008 Oct 22 12:16 PM
Hi
No I don't think but u can create a your own variable:
DATA: NUMBER(10) TYPE C VALUE '0123456789'.
IF <STRING> CO NUMBER.
..............
Max