Abap – Form Using kullanımı
REPORT Z_FORM_USING_DORT_ISLEM.
* değişken tanımla.
data :
a type i,
b type i,
c type i.* topla alt formunu çağır
PERFORM topla using 4 5.* yazdir forunu cagir
PERFORM yazdir.form topla using a b.
c = a + b.
endform.form yazdir.
write :/ ‘sonuc ‘ , c.
ENDFORM.