Did you know that you can use constants to specify the size of a char typed variable? The following code generates an error in Abap Cleaner:
report ztest.
constants c_size type i value 10.
data lv_text(c_size) type c.
lv_text = '1234567890'.
This is the error:

Did you know that you can use constants to specify the size of a char typed variable? The following code generates an error in Abap Cleaner:
This is the error: