Hi all,,,
loop at gt_alv_data.
move-corresponding gt_alv_data to int_final.
read table int_equip_t1 with key matnr = gt_alv_data-matnr
equnr = gt_alv_data-sernr
binary search.
if sy-subrc = 0.
move int_equip_t1-hequi to int_final-hequi .
move int_equip_t1-kunde to int_final-kunde .
move int_equip_t1-name1 to int_final-name1 .
move int_equip_t1-cmatno to int_final-cmatno .
move int_equip_t1-biz_unit to int_final-zcbiz_unit.
move int_equip_t1-biz_unit_name to int_final-biz_unit_name .
append int_final.
endif.
endloop.
now i ahve a new rquirement,
i have to create a status field as select option on selection screen.
i have to use that field in above READ TABLE statement.
if the status is there in that READ TABLE internal table then only i have to APPEND record to INT_FINAL tablee.
plaese help me...
sachin.