2011 Jul 05 7:15 AM
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...
2011 Jul 05 8:03 PM
2011 Jul 05 10:07 PM
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.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |