Avinash,
{code}
data:r_kschl type ranges of konpv-kschl,
wa_gjahr like line of r_gjahr.
wa_kschl-sign = 'I'.
wa_kschl-option = 'BT'.
wa_kschl-low = 'ZD00'.
append: wa_kschl to r_kschl.
clear: wa_kschl.
if wa_kschl IN r_kschl.
endif.
{code}
append all the possible condition types into this r_kschl.
and then you can validate like if wa_kschl IN r_kschl.
K.Kiran.