Bilgi tipi örneği
HR_READ_INFOTYPE örneğidir.
form f_izin_gunhesapla changing chn_personel type zpers_list.
data: lv_subrc type int4.
data lt_p2006 like table of p2006 .
data ls_p2006 like p2006 .
"Farklı veri tipi okumak için infty parametresi değiştirilir ve bu parametreye uygun olarak tanımlanmış infty_tab tablosu gönderilir.
"2001 için lt_p2001 tablosu gönderilmelidir
"data lt_p2001 like table of p2001 .
"data ls_p2001 like p2001 .
call function `HR_READ_INFOTYPE`
exporting
pernr = chn_personel-pernr
infty = `2006`
IMPORTING
SUBRC = lv_subrc
tables
infty_tab = lt_p2006
EXCEPTIONS
INFTY_NOT_FOUND = 1
INVALID_INPUT = 2
OTHERS = 3.
read table lt_p2006 into ls_p2006 with key KTART = `10`.
if sy-subrc eq 0.
chn_personel-kalan_izin_gunu = ls_p2006-anzhl - ls_p2006-kverb .
endif.
endform.