Enhancement Framework – Debugging Implementation

By | April 2, 2014 | Enhancement Implementation | 23,337 | 1

Before moving to further into other enhancement implementations in ABAP Enhancement Framework, let me show you how would program be displayed during Debugging.

Debug the Implementation

Once you have implemented the enhancement implementation, you would be able to see it in action. To be able to debug it:

  • Put a break-point just before the implementation
  • Put a break-point within your implementation as well
  • Run your application
Enhancement_Implementation_Initial_breakpoints

If you have implemented at the correct location, debugger will stop. If not, either you are running wrong transaction or you had implemented the wrong enhancement option.

When debugger comes up, it would be at your 1st break-point. You would notice that your implementation is not displayed in the program. Don’t get alarmed or confused. You notice a small spiral at the beginning of the line. This Spiral shows that there is an active implementation at that location. That implementation would be called by the program when control reaches to that point.

Enhancement_Implementation_Debugger_Spiral

As you can see in this image, there is a second ENHANCEMENT-POINT which doesn’t have any active implementation. Thus there is no Spiral button in front of that.

When you step over to your breakpoint, you would be now within your implementation.

Enhancement_Implementation_Include_Name

Implementation Include

As you can notice, this implementation is in its own include. When you create the implementation for enhancement options, system generates this include to house the code. At runtime, system determines if there is any active implementation needs to be called or not. If there is, it would display that Spiral icon and call the implementation from that generated include.

System generated include name as ZTEST_NP_MAT_DOC_LINE_CHANGE==E for the implementation ZTEST_NP_MAT_DOC_LINE_CHANGE. The include name is 31 characters long. 30 chars are the name of the Implementation and filler as = for name shorter than 30 char, and 31st char as E.

Next Article

Enhancement Framework – Explicit Enhancement-SECTION Implementation

Table of Content – Enhancement Framework

Like It? Share!!

Don't miss an Update

Get notified of the new post, right into your inbox

Naimesh Patel{274 articles}

I'm SAP ABAP Consultant for more than a decade. I like to experiment with ABAP especially OO. I have been SDN Top Contributor.
Follow :

Explore all of his 274 articles.

Load comments

1 Comment

  • fawcs

    For this same reason, if you try to compare the version of the program that has the enhancement with another environment, it will say that there is a difference at the point of the enhancement implementation since it doesn’t load the includes in the other environment

Comments on this Post are now closed. If you have something important to share, you can always contact me.

You seem to be new here. Subscribe to stay connected.