How to Take The MRP Run for Individual MRP Controller 

When you want to run MRP, entry user exit key and put your MRP controller as user exit parameter 

MRP Controller

To define the user exit key, goto SPRO -> MRP -> Planning -> 'User exit material selection - MRP'. 

Then, go to SAP enhancement (SMOD) = M61X000, and add this code :

CLEAR: NO_PLANNING, STOP_PLANNING. 
CASE USER_KEY. 

*----------------------------------------------------------------------* 
* select materials for one MRP controller (specified in user_par) 
*----------------------------------------------------------------------* 

WHEN 'XXX'.      *MRP user exit key define in spro 
 UXPAR = USER_PAR. 
 CONDENSE UXPAR. 
 WRITE UXPAR+0(3) TO DISPO. 

 IF DISPO IS INITIAL. 
   EXIT. 
 ENDIF. 

 IF MT61D-DISPO <> DISPO. 
  NO_PLANNING = 'X'. 
 ENDIF. 

ENDCASE. 
 

Definition: MRP controller 

In a manufacturing plant, a person will be identified and will be responsible for a group of materials.  Material that takes part in material requirements planning must be assigned to an MRP controller.

MRP will guarantee material availability and once you run MRP, it will be helpful in planning as to whether what quantity a component should be procured or what quantity should be produced in-house.  Through MRP, you can automate procurement proposals for purchase and production.

MRP Controller is assigned in material master MRP1 view. 

Get help for your SAP PP Problems
SAP PP Forum - Do you have a SAP PP Question?

SAP Production Planning Books
SAP PP Certification, Interview Questions and Configuration Books

SAP PP Tips
SAP PP Tips and Production Planning/Control Discussion Forum

Best regards,
SAP Basis, ABAP Programming and Other IMG Stuff
http://www.erpgreat.com

All the site contents are Copyright © www.erpgreat.com and the content authors. All rights reserved.
All product names are trademarks of their respective companies.  The site www.erpgreat.com is in no way affiliated with SAP AG.
Every effort is made to ensure the content integrity.  Information used on this site is at your own risk.
 The content on this site may not be reproduced or redistributed without the express written permission of
www.erpgreat.com or the content authors.