Application Development 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: 

MRP Controller Issue

Former Member
0 Kudos

Hi Experts,

I have one query. In my selection screen I have MRP controller as select option i.e. S_DISPO.

Now in my internal table ITAB, I have PO number, item number, material number & plant.

My requirement is that I need to consider only those material which is having selection screen MRP controller.

So, I created one more internal table JTAB & based on ITAB-MATNR & ITAB-WERKS, I selected MRP controller from MARC table & store the data in JTAB.

Anybody will suggest me the proposed solution for it?

Thanks,

Neha

2 REPLIES 2

former_member156446
Active Contributor
0 Kudos

during the select from marc in where condition write dispo in s_dispo.

select matnr werks ...
   from marc
    for all entries in ....
where ....
and ....
dispo in s_dispo.

Former Member
0 Kudos
DELETE ITAB WHERE NOT  <MRP controller > IN  S_DISPO.

Regards,

Lalit Mohan Gupta.