Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
nothafts
Explorer

Motivation


Usually, in R/3 you see a common pattern: Spaghetti-Code within of program includes of a certain function group. Especially, in case of extensions of SAP standard this was required and caused the creation of big monoliths, whereby more than 10.000 lines of code was not rarely.

In addition, another problem as consequence is that only one developer could do a change of the source code, because the whole function group was locked. I would also assume that those changes could not be tested very well. Therefore, the developer would not be aware of any side effects.

This document tries to help you solving that problem.

Objectives


I would like to define the following objectives:

  • Code has to be changeable

  • The developers have to be enabled to implement requirements w/o any risk of side effects to existing functionality and also to work in parallel

  • Not all user have to be affected by the refactoring è reduce risk of complete failure


Non-Objectives:

  • The creation of micro services

  • Leverage (S/4)HANA features

  • Only refactor code, which is really being used (see SCMON/simplification process)


Context



  • Users (also machines, sensors) use the coding in production. We have to be careful!

  • Probably, the quality of the source code is very low. I would expect there:

    • Bad identifiers for variables/constants

    • Commented coding

    • Literals

    • Spaghetti-Code / redundant coding

    • Call of subroutines (PERFORM)

    • Use of “dirty-assign” to other function groups

    • Direct database accesses




Procedure


Apparently, step „zero“ is to get the permission and the budget/time for such a big refactoring.

Also mission-critical is the moment to begin with the refactoring: I would recommend starting before the conversion to S/4HANA, because the conversion could rise syntax errors or other incompatibilities. Unfortunately, not every feature of ABAP unit will be supported on lower NetWeaver releases. However, if you could transfer the old coding w/o any problems to S/4HANA, you can start there as well.

Generally, I recommend as IDE the ABAP Development Tools (ADT) to perform the refactoring, as it is superior to classic SAP GUI.

  1. Freeze coding: Only very urgent hotfixes are allowed. Further development is prohibited

  2. Create a backup: You should create a snapshot of the current coding (e.g. via git). With that you have a “plan B” and maybe can go back, if something goes completely wrong

  3. Do simple refactoring: Rename variables, introduce constants, delete commented code à should be possible w/o any risk

  4. Prepare test data:

    1. Create a testgroup with appropriate test user: In the best case, you have a wide diversity and involve several departments of the company to achieve a good test data quality

    2. Create a clone of the include in an ABAP OO class (let’s call it simply “agent”)

      1. Provide a simple entry method, like “execute” to call it from the original function group

      2. Encapsulate all dependent data of the original function group. I would recommend to create a dedicated class for that (name: “Origin Function Group API”)

      3. Calls to local subroutines also have to be extracted to the Origin Function Group API. Reason: Probably they would operate on the data of the function group



    3. Encapsulate external accesses in the agent: Calls of the same function modules (incl. dirty assigns) and access to database tables should be refactored into appropriate classes. Let us call them “DB Access”, respectively “Other Function Modules API”.
      In order to avoid a direct coupling you should work with ABAP OO interface. You could also create the instances of the classes by using a “Dependency Lookup”

    4. Integrate a “Test Spy” into the classes: The spy is an additional class, which logs the input- and output parameter of the method calls. I would recommend to use one Spy for all classes, because you can also log the sequence of method calls. The log data should be stored into particular database tables or in an eCATT-test data container; I prefer the eCATT-container.

    5. Integrate agent into origin function group with a user parameter:

      1. Once the users of the test group have activated their user parameter, they should do their usual business

      2. In addition I also recommend to activate the code coverage analyzer for the test group in order to find also some blind spots

      3. Dependent of the program include, you should record the test data appropriately. For example, if the coding is only relevant at year end closing, you should consider this time period in your recording

      4. Until now, some coding already has been changed, so there could be a small risk, that you have made some mistakes. Therefore, the test group should also keep an eye on the functional correctness. Of course, in case of any errors, they have to be fixed immediately.









Intermediate result:

  • There is no chaotic read to the function group’s data. Instead you use an API

  • Also other accesses (database tables, other function modules) are (well) defined now

  • You are able to create test data for the automatic testing. This is the fundament for a more complex refactoring, which we want to perform in the next steps


Class diagram (high level):



Hint: During the recording, you as a developer could already think about, how to split this big agent class into appropriate business function classes. Surely, you could start with the first test data a prototype in a local copy of the agent. (see also the next steps)

  1. Provide unit test infrastructure for the agent class: Dependencies have to be „mocked“ and provided with the data from the test spy (expected input/output data, calling sequence)

  2. The unit test should be successfully at the first time: If not, maybe you need to adjust the unit test infrastructure or one of the other classes

  3. Start the complex refactoring: Extract method/classes (see also „Separation of Concerns“-principle). You should also use ABAP OO interfaces to decouple from the concrete classes. Recommendation: Start first with extracting some method. By the name of the methods, you could see if there are common aspects (e.g. country specific) and extract them to new classes, so called business functions

  4. Extract parts of the “global” test data from the spy to the business function: At the agent, all test data for all business functions are maintained, but this raises also the complexity. Moreover, you would not be able to implement new requirements in parallel. Therefore, you have to extract the relevant test data also the business functions unit test. Usually, the redundant test data is obsolete and you can remove them from the eCATT test data container.

  5. The agent only orchestrates calls to the business functions: The unit test infrastructure should only test the agent, not the business functions itself

  6. Adapt test spy, if required. I recommend, to create after step 5 to create a new test data container, as a preparation for the next phase

  7. Extend your test user group with further participants / departments: Now, you can act iteratively and repeat the relevant steps from before

  8. Finalize refactoring and clean up: After the previous step, where you could extend the test group as long as you would like to do (dependent on risk estimation, personal security feeling, time), you have to remove the test spies. At this moment, you do not record any test data. Moreover, you have to activate the new logic for all user


Final Result




  • Classes with clear defined responsibilities: Better to understand the coding

  • Modularization allows testing with ABAP Unit: Fearless change of existing code

  • Further development in parallel mode possible due to separation of concerns into multiple OO classes

  • Also an additional benefit: Eases conversion to S/4HANA due to a better code base, because of automated tests, understandable coding and elimination of redundant code


 

What do you think? Do you have other ideas/best practices? Please share your remarks in the comments. Thanks a lot.
27 Comments