Abap Notes
Abap Notes
https://blogs.sap.com/2013/07/10/data-maintenance-of-custom-tables-on-production-system/
Q) BADI_SORTER
https://www.youtube.com/watch?v=SwGi3gzMTL8
https://www.stechies.com/enhance-standard-class/
Sometimes while working on SAP we get some issue or error that cannot be solved using
default standard methods present in our SAP system. Therefore to solve these kinds of errors
we need need to enhance the existing standard methods or create custom methods.
This tutorial explains step by step procedure to add a custom method to any standard global
class and also to enhance an existing method using exits.
There are three types of exit:
Pre-Method Exit: This exit executes the custom logic before the standard method gets
executed.
Post-Method Exit: This exit executes the custom logic after the standard method gets
executed.
Overwrite-Method Exit: This exit completely replaces the standard logic.
Enhancing The Standard Class: Follow the steps below to enhance the standard class:
Next, enter the Package name and click the Save icon to create the new enhancement
implementation.
Once implementation gets created successfully click the Activate button to make the
enhancement active.
Note: Click on the Source code button and the standard interface screen opens up in change
mode, here you can enter your custom code inside the method.