To declare multiple variables, you can use multiple statements with the data keyword. For example:
data gv_status type i.
data gv_counter type i.
data gv_description type c(30).
Or you can chain the declaration statements:
data: gv_status type i,
gv_counter type i,
gv_description type c(30).
Serkan AKKAVAK
Computer Engineer BSc
SAP Department Manager
Contact : serkurumsal@yandex.com
0 Comments