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

Purchase Requisition field in TCode:- MD09

former_member311223
Participant
0 Likes
852

Dear Experts,

I have a requirement, currently in MD09 we can enter the only one 'Purchase Requisition' number to get Pegged Requirement Details. My requirement is to make the 'Purchase Requisition' field available for multiple input entries... is there any user exits with which i can do this modification the SAP Standard MD09 Tcode....????

Plz suggest...

Thanks in advance...

Dear Experts,

I have a requirement, currently in MD09 we can enter the only one 'Purchase Requisition' number to get Pegged Requirement Details. My requirement is to make the 'Purchase Requisition' field available for multiple input entries... is there any user exits with which i can do this modification the SAP Standard MD09 Tcode....????

Plz suggest...

Thanks in advance...

2 REPLIES 2
Read only

Former Member
0 Likes
710

I think No standard userexit/BAdi is available

Read only

Former Member
0 Likes
710

It may be easier to create an enhancement or implementation. Did you try looking at a BADI like ME_PROCESS_REQ_CUST? Inside here you can create an implementation .

Or, to find a BADI to put your code into, put a breakpoint inside this method. After executing your transaction you will see every BADI that this transaction will hit inside of this method:

CALL METHOD cl_exithandler=>get_class_name_by_interface 
EXPORTING
instance = instance
IMPORTING
class_name = class_name
CHANGING
exit_name = exit_name
EXCEPTIONS
no_reference = 1
no_interface_reference = 2
no_exit_interface = 3
data_incons_in_exit_managem = 4
class_not_implement_interface = 5
OTHERS = 6.
CASE sy-subrc.