‎2007 Jun 20 8:41 PM
I am getting the material from internal table.
I want to retrieve the mtpos from mvke filtering with sales org,dis chaneel, and divison.
regards,Ram
‎2007 Jun 20 9:00 PM
assume the int_mvke is the internal table ( MVKE)
if not int_material[] is initial.
select * from mvke into table int_mvke
for all entries in int_material
where matnr = int_material-matnr
and vkrog = keep condition if possible.
endif.