Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Need help

Former Member
0 Likes
281

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

1 REPLY 1
Read only

Former Member
0 Likes
261

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.