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: 
With the publication of the sap-styleguides, sustainable development or clean-code as it is called by Robert C.Martin becomes more and more popular in the SAP-developer-community.
Although this topic brings a lot of benefits, it was neglected for many years and often is still neglected in many SAP-development-projects.
Because of these reasons, i want to emphasize the benefits of sustainable development in this blog-post.

The aims of sustainable development


The most important aims are defined in the twelve principles of the Agile Manifesto. In the following list you can find some of these principles:

  1. Our highest priority is to satisfy the customer
    through early and continuous delivery
    of valuable software.

  2. Welcome changing requirements, even late in
    development. Agile processes harness change for
    the customer's competitive advantage.

  3. Deliver working software frequently, from a
    couple of weeks to a couple of months, with a
    preference to the shorter timescale.

  4. Business people and developers must work
    together daily throughout the project.

  5. Continuous attention to technical excellence
    and good design enhances agility.

  6. Simplicity--the art of maximizing the amount
    of work not done--is essential.

  7. At regular intervals, the team reflects on how
    to become more effective, then tunes and adjusts
    its behavior accordingly.


Meet the expectations of your customers


As business operations are more and more supported by software, more and more customers and business-owners expect implicitly:

  • absence of issues or bugs,

  • adaptability to new requirements,

  • no unwanted break in existing behavior, when using a new release


As mention in the last section, one aim of sustainable development is to meet these expectations.
Therefore a lot of design-principles and workflows were written done. The website https://clean-code-developer.com has collected many of them.

Reduce technical debts


At the beginning of this section, i want to introduce the term technial debt. Technical debt is the collective name for:

  • issues, which are difficult to reproduce, to solve or make behavior-changes of the existing code-base hardly possible,

  • software-design, which easily causes negative or unexpected impacts after changes in the code-base.


Technical debts can be compared to monetary debts. Monetary debts make investments quickly possible. Same for technical debts. Projects can be quickly brought into production, if technical debts are not considered.
On the other hand the debts and the taxes must be payed off. The taxes for technical debts can be seen in the workarounds, which need to be continuously created for certain issues, and the huge amount of time spend on fixing bugs, that are difficult to trace back.

As you may expect, sustainable development means keeping technical debts on an low level or reduce them and enable with this continuous improvement processes.

Makes development painless for us and the next developer-generation


Sustainable development can preserve you from messy code-bases and from software-decline. Maintaining a messy or declined code-base is often a pain:

  • negative impacts after changes are hard to find with tests,

  • developers are often afraid touching the "running system",

  • the business-owners may start complaining about bugs,

  • reading and understanding the code-base is a difficult task.


With sustainability, it's getting painless:

  • sustainable development means code-bases optimized for reading and traceability. In an clean-code-base you should easily find out what is going on.

  • Clean-code makes automatic test-execution with a high coverage possible. Automatic test-execution can localize bugs and negative impacts more reliable than manual test-execution.

  • As mention before, you meet the explicit and the implicit expectations of your customers.


Getting Started


The website https://clean-code-developer.com give you a short guide how to getting started with clean-code.
Most of the tools mention here are installed by default or can be installed on every new SAP-System:

  • Version-Control: is build-in, an alternative is abapGit

  • Automatized Integration Tests: can be done with ECATT

  • Reviews: Can be done in principle with the Version-Control-Tool. Pull-Requests on GitHub or Merge-Requests on GitLab are providing extra functionality for reviews. Other options, which can be used directly in the SAP-system, are the diff-view from abapGit or Lars Hvam's open-source-project abapOpenReview.

  • Automatized Unit Tests: can be done with ABAP unit

  • Mockups (Testdummies): can be created with the Test-Double-Framework

  • Code-Coverage-Analyzer: SAP called their tool Coverage-Analyzer


Read, Read, Read


As the clean-code-developer-initiative mention in the orange grade, reading and further education is an important task for clean-code-developers. As SAP continuously deliviers new technologies to support sustainable development, we can take full advantage of clean-code, if we know how to deal with these technologies. Even though the procedurally-paradigm (reports, function-groups) doesn't make clean-code-development impossible, new paradigms like ABAP-OO or code-push-down with ABAP-CDS make things easier and clearer to implement and new workflows like unit-tests with ABAP unit are creating safety belts for code-refactorings.

Reading-recommendations for newbies and experienced developers:

Fell free to contribute new items to this list.

Not just for agile projects


Even so many aims of sustainable development were formulated in the Agile Manifesto, sustainable
development is not only applicable in agile projects. Waterfall projects as well as agile projects can benefit from sustainable development.
5 Comments