2015 Apr 21 3:07 AM
Hi,
Can someone tell me which is the user exit or customer exit that I should use after the billing had been created in VF01?
I want to update a custom table immediately after an invoice had been created.
Thanks
2015 Apr 21 4:24 AM
Please try FM EXIT_SAPLV60B_008. In this, you will need to create ZXVVFU08 and add your code.
Thanks,
Parimal
2015 Apr 21 5:06 AM
Hello,
You can fine Exits in any transaction by following the steps given below: -
1. Go to the TCode SE24 and enter CL_EXITHANDLER as object type.
2. In 'Display' mode, go to 'Methods' tab.
3. Double click the method 'Get Instance' to display it source code.
4. Set a breakpoint on 'CALL METHOD cl_exithandler => get_class_name_by_interface'.
5. Then run your transaction.
6. The screen will stop at this method.
7. Check the value of parameter 'EXIT_NAME'. It will show you the BADI for that transaction.
Thanks
Rajit
2015 Apr 21 8:53 AM
Hi,
What kind of records you want to update i.e, header or item..
2015 Apr 21 10:35 AM