Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding a system variable

Former Member
0 Likes
732

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....

1 REPLY 1
Read only

Former Member
0 Likes
534

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