cancel
Showing results for 
Search instead for 
Did you mean: 

"Not Pegging Relevant"

Former Member
0 Kudos

Hi,

When you are in /RRP3 for any material, there a field for each receipt

elements "Not Pegging Relevant".

Is there a User Exit in the MRP Run Program (//Background_Scheduling)

where we can set this?

Thanks for you help.

David Turcotte

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi David,

Would you share, How did you get out of this problem?

I got in to the similar issue, Hope you will help me out.

Points for sure : )

Thnak you,

Srini

Former Member
0 Kudos

Probelm is solved my self.

Found a BAdI definition CIF_DM_PO_CHANG2 and implemented it with the following code.

METHOD /SAPAPO/IF_EX_DM_PO_CHANG2~MODIFY.

FIELD-SYMBOLS: <WA_OUTPUTS> TYPE /SAPAPO/OM_IO.

IF SY-UNAME = 'APOADMIN'.

LOOP AT CT_OUTPUTS ASSIGNING <WA_OUTPUTS>.

CLEAR <WA_OUTPUTS>-IGNORE_PEGGING.

ENDLOOP.

ENDIF.

ENDMETHOD.