cancel
Showing results for 
Search instead for 
Did you mean: 

MRP

Former Member
0 Kudos

Hi Gurus,

In transaction MD01,

If i have to define my own user exit key, and user exit parameter.

How to do it,

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

You have to use Enhancement M61X0001 for using User Exit key and parameters in MD01.

Steps:

Create User exit Key(ex: 005)

Create Project through CMOD using Enhancement M61X0001.

In Include specify logic(you can use the example code as reference)

Activate User Exit.

In MD01, specify User Exit key, Parameter and execute MRP.

----


  • select materials for one MRP controller (specified in user_par)

----


CLEAR: NO_PLANNING, STOP_PLANNING.

CASE USER_KEY.

WHEN '005'.

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.

Regards,

Krishna Mohan

Former Member
0 Kudos

HI

MD 01 is total MRP run online. IT can be used for total plants and also for particular scenario.

You can use functional module to MRP for Particular MRP type and for particular material type. Consult your ABAP to find out the functional module name and they write small programme for this enhancement.

Regards

J.Saravan

Former Member
0 Kudos

Hi

MD01 is for running MRP for total plant.

Instaed if you want limit any materials for MRP Run say to limit for a particular MRP controller wise , then you have to use user exit.

If you coordinat with your technical collegue he will do for you.

Regards

YMREDDY