Towards the excellence!!!
data declarations are used to define variables and data structures that are used in your program
DATA(lv_vehicle) = 'Mercedes'.
Before
DATA: lv_rows TYPE i.
lv_rows = LINES( itab)
After:
DATA(lv_rows) = LINES( itab ).
No comments:
Post a Comment