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

exit regarding md01 tr. for pp module

Former Member
0 Likes
349

hi gurus,

this my requirement.

  • Restriction of material selection during the MRP run.when MRP run is executed at

  • plant level,material requirement planning is excuted for all the material in the plant.

  • It is not advisable and may not be necessary to execute MRP run for all the materials

  • in the plant,as materials may have different frequency for MRP execution.This exit is

  • used in tr. code MD01.

*exit name they provide:M61X0001.

please help me how to achieve this.

thanks

sunhasis

hi gurus,

this my requirement.

  • Restriction of material selection during the MRP run.when MRP run is executed at

  • plant level,material requirement planning is excuted for all the material in the plant.

  • It is not advisable and may not be necessary to execute MRP run for all the materials

  • in the plant,as materials may have different frequency for MRP execution.This exit is

  • used in tr. code MD01.

*exit name they provide:M61X0001.

please help me how to achieve this.

thanks

sunhasis

1 REPLY 1
Read only

Former Member
0 Likes
317

Hi,

You have to specify MRP type .

Give the MRP type for the materials for which no MRP run is required.

check this code.

&----


*& Include ZXM61U02

&----


  • break-point.

CLEAR: NO_PLANNING.

CASE USER_KEY.

-


  • Exclude Materials with MRP type 'PD'

-


WHEN '002'.

IF MT61D-DISMM = 'PD'.

NO_PLANNING = 'X'.

ENDIF.

ENDCASE .

Regards,

Bharat.

*

o

+ reward points if helpful.