2008 Sep 30 10:06 AM
Hi All,
I am working on BADI 'ME_PROCESS_PO_CUST'.When i am implementing this BADI.It is giving the information message like BADI migrated to Enhancement spot.
Is it possiable to implement this BADI.I want to check the condition in the item level.
Can anybody expalin what does it mean.
Thanks,
Swapna.
2008 Sep 30 10:12 AM
Yes it is possible to implement the BAdi.
It will ask you to create an enhance implementation. Create a new Z## enhance implementation when you get a pop up. Select the Z## enahancement you have created.
It will allow you to create implementation of the BADI.
Let me know if you have any issue.
2008 Sep 30 10:12 AM
Yes it is possible to implement the BAdi.
It will ask you to create an enhance implementation. Create a new Z## enhance implementation when you get a pop up. Select the Z## enahancement you have created.
It will allow you to create implementation of the BADI.
Let me know if you have any issue.
2008 Sep 30 10:56 AM
Hello,
This BADI is not triggereing when i press enter in the item level.
I am checking bade if purchase doc type is 'XX' and the acc assigment category is 'YY'.
then i need to enter the information message.I am writing this BADI.
But this BADi is not triggereing.What would be the probelm
Thanks,
swapna
2008 Sep 30 1:22 PM
Hi Swapna,
Check if the BADI is being called by puting a break point in method GET_INSTANCE of class CL_EXITHANDLER.
Put a break point on
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.
Parameter exit_name will contain the exit names.
and check whether your implemenation is active.
2008 Sep 30 1:36 PM
Hi surender,
I put the breakpoint in the class.But this BADI is not at all triggereing.
Thanks,
Swpana
2008 Sep 30 1:45 PM
Let me know your requirement and ERP version so that i can suggest you some exit or a BADI which meets you requirement.
award points if useful
Regards,
Surender
2008 Sep 30 1:55 PM
Hi surender,
I am working on ECC6.0 version.
Please suggest me any badi or exit.
Thanks,
Swapna
2008 Oct 01 5:34 AM
Swapna,
I need to know your requirement, I understand that you are working with PO processing but I need to know the scenario.
Place a break point in the class cl_exithandler to know which BAdi is triggered (as mentioned earlier)
2008 Oct 01 10:05 AM
Hi Surender,
My problem was solved.I found the user exits according to my requirement.
It is working noe pwer fectly.
Thanks for your help.
Thanks,
Swapna.