keremkoseoglu
Contributor
Member since ‎09-26-2016

User Statistics

  • 155 Posts
  • 14 Solutions
  • 54 Kudos given
  • 330 Kudos received

User Activity

This article started with my blog post Suggestions for better object oriented design . After I have published it on LinkedIn, @ennowulff  started a friendly discussion about composition vs inheritance; and sent me a GitHub repo containing his design ...
Today, I would like to demonstrate a very simple but effective programming habit that I use in ABAP development: "TODO based coding". The idea is to plant TODO comments into the code (typically among multiple programs / classes) before actually star...
ABAP CDS Views are great and all; however, they don't support subqueries at this time. In this post, I would like to share a workaround which functions similar to "NOT EXISTS". The requirement was to exclude material document items (MSEG) which were...
In this post, I will share a general purpose class covering the multiton design pattern. By implementing a simple interface, you can add multiton functionality to your existing classes. What is multiton, anyway? Multiton is a performance oriented d...
As many of you already know, ABAP supports the UNION command now. UNION is an SQL command to combine the results of two separate queries into one dataset. Here is a sample dataset from the imaginary database table Z1: ID TEXT 001 One 00...