Skip to Content
Author's profile photo Paul Hardy

Are you writing Dirty Filthy ABAP Code?

Book Review – “The Clean Coder” by Robert Martin

Introduction
I will start and end with a link to the Amazon entry for this book:-

As might be expected I have just finished reading this book and what like to share what I thought about it and how I think it is relevant to the day to day life of an SAP programmer.
As might also be expected I am going to go off on all sorts of tangents…..

Back Story
“Why did you get this book in the first place?” I hear you ask. The answer is simple. I had no idea Robert Martin had written two books with virtually the exact same title, so I ordered the wrong one and only realised when it showed up. At that point I thought “sod it, I’ll read this one instead”.

I was trying to buy “Clean Code” as opposed to “The Clean Coder”. The first is about the code itself, the second is about the person who writes the code, i.e. people like ME. That wasn’t what I wanted, I am a computer programmer, I don’t care about PEOPLE, let alone myself, I only care about MACHINES.

Anyway, why was I trying to buy a book about clean code?
The other day I got an assignment to add a feature to the Monster Munch report (I have changed the exact nature of the program to avoid trade secret type issues). The users had noticed that in the Hula Hoop report you could select several records and then do a “mass change” of several key pieces of data of each record. Everyone thought this was great and the business analyst had determined it would be a huge efficiency boost if this feature was added to the Monster Munch report as well.

I thought to myself “I would not be surprised if once I’ve done this, the next week I’ll get a request to add this feature to the Frazzle report, and then the Wotsits report, and then the Salt’n’Shakereport, and so on…” (To put the vast bulk of the world out of their misery, these are all brands of crisps on sale in the UK).

So despite the fact that the easiest and fastest thing to do would just be to find the code in the existing report that did the desired feature and the just cut and paste it to the new report, that somehow felt wrong. I have learned recently about something called the DRY principle http://en.wikipedia.org/wiki/Don’t_repeat_yourself
And it seemed like having the same code in five different places was a recipe for disaster. In ten years’ time you would end up with five wildly different sections of code  all trying to do the exact same thing with varying degrees of success and giving different user experiences. I have even seen this within the same program – if you press the ICON then one screen pops up, if you took the same option from the drop down menu a different screen pops up, but both screens take the same data and then do the same thing.

So, I decided to extract the relevant code and put it inside a function module. Oh no! I hear you cry, not a function module. Anything but a function module, not the sonic oscillator! The reason people would get so upset is that surely after all I have said about OO programming I should be making a Z class?

Best Practice – Use Imaginary Tools, not real ones

The “funny” thing is that if I read the official guidelines from SAP I would hear “don’t do this, don’t do that” and yet there is no replacement. The most obvious example is – “don’t use a BDC use a BAPI”. OK, which BAPI do I use – there isn’t one! You see that all the time. Well goes the argument, write your own BAPI – which would involve direct updates to standard SAP tables. That is even worse isn’t it?

Just last week whilst I was having an internet argument with SAP guru Horst Keller – in song – he was saying don’t use SELECTION-SCREENS as they are old fashioned. I said I would be more than willing to use the alternative, what was it? He said there wasn’t one.

It is the same with the ever popular “the SAP GUI transactions will be replaced by WEB DYNPRO eventually”. Sounds fine but this is not a replacement as I define it as WEB DYNPRO runs in a web browser and SAP GUI runs on a desktop. I know, I know, I’m not supposed to be using a desktop – that is so last week.

Henry Ford said “if I had asked my customers what they wanted they would have said ‘faster horses’”.  The difference is he did in fact HAVE an alternative, he didn’t just say “stop using horses”.

I suppose the idea of stopping enhancing the DYNPRO graphical screen painter all those years ago was to push people away from writing GUI applications. That was the approach with SAP workflow for a long while also, until the USA workflow user group forced SAP to take workflow out of maintenance mode and add extra features and the modern ABAP editor. I have no such illusions that the DYNPRO graphical editor will ever be improved.

Girls Just Want to Have Function Modules
Anyway, in the same vein, just as there is no replacement for SELECTION-SCREENS there is no replacement for CALL SCREEN either. The recommendation is to wrap the screen in a function module. That way if there ever was a new technology which ran in the SAP GUI – ha ha ha– then you could change the function and the calling program could stay the same.

If my example was more than just an interactive ALV report I would in fact wrap that function module in a class, so I could replace the function module call with a stub when doing unit tests.

Unscrambling an Egg
The next step would be to find the appropriate code in the existing program, and then move it inside a function module. Oh dear! That code just wasn’t in one place; it was evenly distributed throughout the program. This was a typical example of the function being welded into the program, some global variables used in the function at hand were also used for other things, and some routines used by the feature were also called by unrelated features.

That makes things a lot harder. So I left the existing program totally untouched for the moment, and started creating my function modules copying what seemed necessary e.g. the screen, assorted global variables for the screen, PAI / PBO modules etc. Naturally I followed the good old SAP recommendations to have no executable statements within modules, limit my global variables to what was needed for the screen etc.

So, in the end the new function module did not look much like the original code, but it did the same thing. I then called my new function module from the report I was adding the feature to. All was well. That was the easy bit. Now – how to unscramble the egg.

Everything’s going to be OK CODE
At what seems the right place in the original program I call the function module. Now it is time for Sherlock Holmes to find out what invisible things are getting passed to the original screen and what invisible things get passed back and used much later on.
The way this report worked was to put an ALV grid on screen 0100, and then you select one or more records and choose a menu command or ICON and 99% of the time another screen would pop up asking you something else related to what you were about to do. Screens need a global variable for the OK_CODE, so in this program such a variable had indeed been declared, called OK_CODE. It was used in every screen.  I am sure you can see the problem coming … especially if you call three different screens one after each other. At least with a function module you are isolated from such things, you can control what gets passed backwards and forwards via the signature.

Just to make things even more funny, in the USER_COMMAND after the main screen, the OK_CODE was stored for posterity in another global variable called SAVE_OK. This I presume because OK_CODE will change after the next screen gets called.

Then we have in the USER_COMMAND
PERFORM call_up_xyz_screen USING SAVE_OK.
…. Which in the FORM definition becomes…
FORM call_up_xyz_screen USING ok_code.
Lovely. A parameter with the same name as one global variable, which actually refers to a different global variable. When the screen gets called the global OK_CODE changes, but not the OK_CODE variable within the subroutine.
In fact, after the call of the screen, which sets OK_CODE the calling subroutine cannot tell what the global OK_CODE has been changed to, as that value is masked by the local (parameter) variable with the same name. So the original programmer had created another global variable GL_CANCEL (I wonder what the L meant?) which gets set inside the PBO of the called screen if the user has cancelled.
This is why, to all the people who say calling variables PUD_OK_CODE or GD_OK_CODE or LD_OK_CODE is pointless, in OO world they are most likely 100% correct, but what about “legacy” programs like this which have to be maintained?
And this, your honour, is why I was up the lamp post with a traffic cone on my head. As I was doing my best to tidy up this indecipherable mess, I remembered the quote from Robert Martin, his “boy scout rule” – “always leave the code cleaner than when you found it”.

At that moment this seemed like the most profound wisdom in the universe, so I determined then and there to get that book. And then I went and ordered the wrong one. At least I got the author right.
The Clean Coder
There is one paragraph half way through this book which neatly summarises the core message. At the start of one chapter “Uncle Bob” wants you to imagine you are able to observe yourself being operated on by a surgeon.
The question is do you want the surgeon to behave like a calm professional, or to shout and scream and throw things and blame management for everything, and generally behave like a software developer?

The author’s position is that over the years programmers have given themselves a terrible image, and he says that generally this image is deserved, and his book is a series of things you can do about it so you end up acting like a professional, doing yourself and the whole trade a favour.
The Dirty Filthy Coder
Can this be true? Are all developers hopelessly unprofessional? Well, it’s a funny thing, but while I was reading this book it occurred to me that ordering the wrong book by mistake was in some senses “serendipity” – a happy accident.
Last Christmas it was the time of year everyone loves, performance review time. I wasn’t worried at all, thinking of all the wonderful new technologies I had introduced to our organisation during the year – ABAP2XLS, shared memory, BRF+ and a raft of other things which would not have seen the light of day if I had not gone investigating.
My boss summed me up as follows:- “technically you are brilliant – no one could argue. However one of the important things in our company is to have a professional attitude, an attitude you appear to totally lack”. Oh dear! Even if Bob Martin is wrong and most developers don’t have a reputation for being unprofessional, it is looking like there is at least one who does.

I’m Starting With The Man In The Mirror
There are lots of ways to deal with criticism. One way is to ignore it and say “it’s not me – it is everybody else, they all take things too seriously”. I didn’t think that strategy was going to work as well as it might.
OK, how to be more professional? The first thing I thought of was to stop calling all my colleagues / superiors and external vendors I came into contact with all the names under the sun. Its lots of fun, but some people get most upset.
BR 01 Insults.png          
After that I ran out of ideas, so it’s a good job I am reading a book on the subject. What can it tell me?
Bob Martin has clearly had an enormously successful career, but for the purposes of this book, he is writing an autobiography will all his successes glossed over, just concentrating on all the times he has stuffed up in the various jobs he has held. As might be imagined that is fascinating stuff, especially since he started programming in 1968 (the year I was born) so all this is mixed in with the history of computing, programming using punch cards and the like.
However as the examples came and went, all too often I thought to myself “oh no – I did that last year, and then blamed X for the project falling behind schedule”. So technology might change, but history is doomed to repeat itself.
An example is I keep forgetting not everyone has a (warped) sense of humour. Once a problem was reported to me whereby seemingly at random SAP transactions were failing during the night shift. While I was investigating the business analyst came to me and asked if I had any luck tracking down the problem. I said, deadpan, that my suspicion was the night shift problems were being caused by Jackie Wilson.

He didn’t get the musical reference, it was pretty obscure I have to admit, and off he went to report to the powers that be that we had found the culprit.
What’s this got to do with SAP?
To quote Edwin Starr – “absolutely nothing”. Or has it? Over forty years of programming he (Robert Martin not Edwin Starr) has worked on myriad different systems and in lots of different programming languages, but it looks like mistakes are “platform independent”.
So the programming language doesn’t matter. Though this book is bang up to date – it came out in 2011 and has reference to the recent Lord of the Rings films – I wonder if Robert Martin has even heard of ABAP – his language of choice is C++.
It is easy to fall into the trap of thinking that because the vast majority of large companies use SAP (e.g. SAP claim 75% of beer produced worldwide is down to SAP using companies e.g. Heineken) but I get the feeling that because the sheer volume of small companies where people program in Java or .NET or what have you, the amount of ABAP code in the world divided by the amount of code written in other languages may be a very small number indeed.
At one point Uncle Bob is talking about when he was a “kid” writing silly little games in interpreted languages. He says in interpreted languages like BASIC or LOGO you just add a line of code and then you don’t have to wait for the system to “build” you can execute the program straight away after adding your new line. That sounds familiar.
To quote from the book “but in real programming languages that kind of cycle time was absurd … in C++ we had build and link times that took minutes, sometimes hours…”

Just last week I had a friend tell me that not so many years ago his IT project took forever as every little change caused a complete recompilation of the entire system (I won’t say what framework but it is very famous) that took forever. So this sort of thing must still be going on. He was amazed when I told him how SAP development worked with everything in the database.
Robert Martin then discovers test driven development where you are forced to add small bits of code repeatedly and so he discovered “using this simple discipline I could code in real languages with the cycle time of LOGO”.
I can only presume ABAP must be an interpreted language as we don’t have to wait hours for the system to build after adding a line of code. However I never knew it wasn’t a “real” language. Still all that beer produced by companies using SAP is real enough, and that’s all that matters to me.

The Fit Ness Monster
Robert Martin and his son have developed a tool called FITNESSE which is described as an automated user acceptance testing framework. That made my brain melt at the start – how can you automate user acceptance testing – don’t you need actual users for that?
My experience of user acceptance testing involves sitting users down in front of the new system and then watching them ***** about it and ask for the legacy system back. In theory I could automate this by recording someone saying “that’s rubbish, get rid of it” and then playing it back whenever we make a change, but somehow I don’t think that is what is trying to be achieved here.
In C++ world they clearly use two different tools – one for unit testing, one for user acceptance testing. So I tried to jam the examples into ABAP world and after a while it all became clear to me.
ABAP Unit can handle both of these things. A unit test involves testing a small unit such as an individual method (or function module or whatever) and verifying that it works. This is aimed at programmers.
A “user acceptance test” is what Dan North would call a “behaviour driven development” test. This is the “given the user wants to do this” / “then when this button is pressed” / “a miracle occurs” format, where you test one large section of the program at once. This is more aimed at business analysts – in the book Robert Martin says that really this sort of test should be designed by the business people, or the business analysts at least, but in reality the developers end up writing these as well.

Tomato Sauce
One things I am going to have a go at from this book is the “PomadoroTechnique”. I have already ordered a wind up tomato online, and it is winging its way to me as I speak.
The idea is you need a device which can time 25 minutes and then make a noise at the end of it. My mobile phone could do that but it does not look REMOTELY like a tomato.
Spot The Difference
Br 03 Phone.pngBR 02 Tomato.png
You are supposed to pick something to work on uninterrupted for 25 minutes, set your tomato for this time period, switch off your email, and off you go. Instantly your desk phone and mobile phone will start to ring non-stop, and everyone in the office, and even from the bus queue outside, will come to you one after the other, forming a huge line, all insisting they have a problem that you need to fix this very instant or the universe will come to an end.

I once got all the programming team t-shirts which said “let me drop everything and work on your problem” as that is what people expect, but in the tomato game what you are supposed to do is fob the people with problems off, saying you’ll get back to them when the tomato stops, and make a list of everyone you need to see / call back etc.
Then when the tomato ends you have to stop work on whatever it is you aimed for – instantly – (that is if you got round to starting) and then go and see everyone that bothered you straight away. This makes you more productive. Apparently some people measure their success by how many tomatoes they do each week.

Does that sound like fun? I can’t wait for my tomato to arrive, using a mobile phone or some sort of app on your computer seems like cheating to me.
We are all going to be replaced by Robots
The book ends talking about something I have heard of again and again. All throughout my career in IT, and all throughout Robert Martin’s, and he started work as a programmer in 1968 as mentioned before, assorted people have said “shortly you will not need code at all, you will just be able to draw a diagram and the code will be generated for you”.
I was born in 1968, so that claim was being made the day I was born, it was probably the first thing I heard just out of the womb, no wonder I started crying, and that claim is still being made today. Just look at all the adverts in magazines or online – they all say “with our product you can create (whatever it is) in minutes WITHOUT A SINGLE LINE OF CODE”. Hooray! I think the point being made is that if you are a programmer don’t hang up your hat just yet,
It is rather like the various places in SAP – HR & Variant Configuration for example – where someone has the bright idea to create a really cut down programming language so simple that business types can use it. Then customers start asking for extra features and they get added to these cut down languages until they become just as complicated as ABAP but different, and with less features.
Message in a Bottle
After digressing like Jock McDigressing, the digressing Scotsman, winner of the 2012 all Scotland digressing contest, it might be an idea if I mentioned some of the other things I found interesting in this book, in case you want to have a look for yourself:-

·         He gave a list of technical terms that all programmers should know e.g. “Parnas Table”, “Conascence:, “Tramp Data” etc. I didn’t know any of them, as mydegree was in economics, and I only started reading up on computer science things after twelve years of programming for a living. Still, I looked those terms up on Wikipedia fast enough….
·         An explanation was given for why Yoda said “Do; or do not. There is no trying”.  When I first heard that in the film all those years ago I thought it was nonsense. Now I have heard a cast iron reasoning as to why saying to whoever is asking you to meet that impossible deadline “I will try” is a really silly thing to say,

There are also strategies for telling the powers that be when something is impossible in the desired time frame, naturally something they don’t want to hear, tips on doing time estimates (something I am hopeless at) …
BR 04 Magic Button.gif
…how to avoid meetings if at all possible, how to deal with other people (urrggh) and generally the whole thing is about how to do your job in such a way that people might actually one day start to take programmers seriously instead of just laughing at them. I’m sure that’s an achievable aim, but maybe I should have got a book on how to climb Mount Everest instead, that goal might be easier….
All in all thumbs up – I liked this book a lot; I can’t wait to read the one I actually wanted… then I shall write about that as well, and if it helps me in my day to day work. I am also in the new future going to be writing about how I find some free ABAP development tools you can get from a company called Hovitaga.
That’s All Folks
As I said earlier, I will start and end with a link to the Amazon entry for the Clean Coder book:-
Cheersy Cheers
Paul
20/06/2013 – Stop Press – My tomato arrived in the post today. I will let the world know how effective this is in real life.
21/06/2013 – It’s now on my desk – picture below
Snapshot_20130621_1.JPG
04/07/2013 – I did my first “tomato” this morning, I think this is going to work really well…..
19/02/2014 – Look what I found in my system th other day. I fine example of what  NOT to use comments for.
useless comments.PNG
Further OO Blogs

Assigned Tags

      27 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Hendrik Brandes
      Hendrik Brandes

      Hello Paul,

      I like your blog very much and it remembers me partially to my experiences when I try to introduce new methods and tools to get better.

      Sadly most of the new things will have a huge barrier which we must overcome - especially within the SAP ecosystem. When speaking about ABAPUnit, I often see people which are stil at the question "function module or objects".

      BTW: Ordering my tomato πŸ˜‰ I like this kind of gamification...

      Keep going on!

      Hendrik

      Author's profile photo Matthew Billingham
      Matthew Billingham

      Rather than a tomato, can't we get those automatic motion detecting guns in Aliens installed in the corridor approaching the office? Or would that too be unprofessional.

      To clarify further - crisps are what most of the world refer to as "chips".

      Remember people - if you're no good technically, you can still be professional and get on in the world.

      The Dilbert cartoon reminds me of a time when the logistics manager questioned my timescale estimate (which was 5 times longer than his). "Where did you get that figure from", he asked. "Same place you got yours" I replied.

      Anyway - on a similar vein, I recommend Yourdon's Death March. It's a book about project management, but so much applies to developers - especially if you're on a death march project. http://www.amazon.co.uk/Death-March-Yourdon-Press-Series/dp/013143635X/ref=sr_1_1?ie=UTF8&qid=1371465774&sr=8-1&keywords=death+march+yourdon

      Author's profile photo Paul Hardy
      Paul Hardy
      Blog Post Author

      This crisps thing is vitally important.

      I will use the USA as a baseline, I think everyone knows what "do you want fries with that?" means, so I'll call those french fries. The wafer thin things can be called "potato chips" that is what they are called in America.

      In the UK we refer to "french fries" as "chips", and to "potato chips" as "crisps".

      In Australia we refer to "french fries" as "chips", and "potato chips" as "chips", and silicon chips as "chips" and the California Highway Patrols as "CHIPS" and the things we have on our shoulders as "chips". As of this year we can now refer to WEB DYNPRO side panels as CHIPS as well.

      I am always wary of the term "most of the world". Whenever the late Michael Crichton used a term like "international convention" he meant 'the way we do things in the USA". He wasn't generally talking about crisps in this context however, he never wrote novels which revolved around potato chips for some reason.

      Chipsy Chips

      Paul

      Author's profile photo Matthew Billingham
      Matthew Billingham

      Much of the world then - meaning USA, Canada, France, Switzerland and Germany.

      But are french fries really chips? The only country I've been in that does "proper" chips - outside England, Scotland, Wales and Ireland - is Belgium.

      Author's profile photo Astrid Gambill
      Astrid Gambill

      Hi Matthew,

      I'd have to agree with you on the rest of the world not really doing chips.  I have fond memories of the ones I used to eat as a kid, cooked in beef dripping, and wrapped in newspaper.  I grew up in Yorkshire, and always really enjoyed powercuts as it meant we got fish and chips for supper.

      Cheers

      Astrid

      Author's profile photo Dirk Wittenberg
      Dirk Wittenberg

      Hi Paul,

      great blog, it lifts the "clean coder" - book up some steps in my books-that-should-be-read-list.

      I've read the clean-code book already and it's worth it - but as an ABAPer you have to accept that at least 1/3 of it is written in plain Java πŸ˜‰ . I'm looking forward to your blog about it.

      Regards,

      Dirk

      Author's profile photo Jelena Perfiljeva
      Jelena Perfiljeva

      Paul, thank you for another excellent blog! Stop reading others' books and start writing your own already! πŸ™‚

      Was really surprised to learn that you could be criticized for "attitude". You must be hiding it very well at work because through your blogs I see a very wise, witty, calm and collected person. If this is not professional then I don't know what is.

      (c) Rated, liked, bookmarked. πŸ™‚

      Author's profile photo Custodio de Oliveira
      Custodio de Oliveira

      Hi Paul,

      Great stuff, as always. I still have to read this book. There's a copy only 5 meters away from my desk, and I occasionally read some random pages. But now that I've read your review I don't need to read the book, right?

      Cheers,

      Custodio

      Author's profile photo Susan Keohan
      Susan Keohan

      Hi Paul,

      This blog was so good, I had to read it over two mornings.  Two points which I think you should be knighted for are:

      1) When the developers and product managers of bleeding edge tools tell us not to use Selection-Screens (or SAP Workflow) they are really not yet taking into account that most of us weasely programmers don't control our entire system landscape.  So at times, we need to use practically-dead functionality in order to accomplish our goals.

      2) Introducing me to the Pomodoro technique (in addition to DRY) - I wonder if I had 25 uninterrupted minutes to work on any given task if I could increase my productivity?  I admit it, I am an email/phone/cocktail napkin addict, and my desire to respond to people as soon as possible with the answer to ease their pain often distracts me from the pain I am currently working on.  So do let me know how that works out for you?

      All in all, excellent reading, excellent work.  I hope to see more!

      Sue

      Author's profile photo Paul Hardy
      Paul Hardy
      Blog Post Author

      Dear Susan,

      Many thanks for the kind words.

      When I got home this evening I had a note from the postman saying I had a parcel which needed to be collected. That is either the "Clean Code" book I meant to get in the first place, or my tomato..

      Up to this point I have been physically incapable of not stopping what I am doing and responding to incoming emails at once, can I use the power of the tomato to get me to switch my email off for 25 minutes? We shall see.

      P.S. Workflow has a bad reputation at my place at the moment, we have one major one to handle incoming supplier invoices, and that is what most people in my organisation (the Australian bit) think "workflow" means. I've been out of the country in Germany for a few years and the workflow seems to have "rotted" in the interim.

      There are now two of us giving this workflow some TLC and we have high hopes of turning around the reputation in our company. The trigger for this was my current focus in life, which is connecting our SAP ERP system with the Ariba network, which is a fascinating project in and of itself.

      Author's profile photo Susan Keohan
      Susan Keohan

      Hi Paul,

      Of course if you are connecting ERP to Ariba, your SAP salespeople will tell you you need to buy BPM.  But perhaps you and your colleagues would enjoy this:

      Thorsten Franz and Jonathan Reed recorded a podcast a while ago, in the midst of the @sap_WIT and all our work with SAP, and in turns out in their minds, not only is Workflow Not Dead, but it's utterly sexy!

      I would have to agree.  Besides, your company already owns it.  And I could go on and on, but I am pleased to hear you are giving it some TLC.  Let me know if you need some help?  I could be convinced to either come to Germany or Australia πŸ™‚

      Keep up the amazingly good work!

      Sue

      Author's profile photo Former Member
      Former Member

      Hello Paul,

      Wonderful blog. An eye opener to most of the developers in ABAP Community.

      Learnt a lot of new things from it. Thanks for sharing !! πŸ™‚

      Regards,

      Jaideep

      Author's profile photo Thorsten Franz
      Thorsten Franz

      Stunning writing, Paul! This was such a pleasure to read I'll re-read it at least once or twice more to catch everything. πŸ™‚

      Thanks,

      Thorsten

      Author's profile photo Jitendra Kansal
      Jitendra Kansal

      This is really interesting blog. πŸ™‚

      Author's profile photo Kiran Kumar Valluru
      Kiran Kumar Valluru

      Very nice blog! Keep Posting πŸ™‚

      Cheers

      Kiran

      Author's profile photo Former Member
      Former Member

      I enjoyed reading this.

      I realise now, given the comments about developers and their particular sense of humour, why I have never got far up the corporate ladder.

      Author's profile photo Susan Keohan
      Susan Keohan

      Paul, the corporate ladder is highly overrated. It just means you have further to fall.  I'll take development any day!

      Author's profile photo Abhi Mishra
      Abhi Mishra

      Very nice blog. Thanks for sharing. πŸ™‚

      Cheers!

      Abhinab

      Author's profile photo BjΓΈrn-Henrik Zink
      BjΓΈrn-Henrik Zink

      Hi Paul,

      great blog post, perhaps I will write an executive summary blog about it  πŸ™‚

      /Björn-Henrik

      Author's profile photo Tom Van Doorslaer
      Tom Van Doorslaer

      I laughed my butt off reading this story πŸ™‚

      Now don't you agree that hungarian naming of variables could have improved the readability of the OK_CODE? By naming the import variable IV_OK_CODE, it would not obscure the GV_OK_CODE. (Huh, Chris Paine ? ) (Yes, I can't let go)

      http://scn.sap.com/community/abap/blog/2013/05/23/abap-code-naming-conventions--a-rant

      I also noticed that, in general, non-developers do not understand the humour of developers. It seems to be universal.

      ps: I wonder when the "Code Cleaner" will come out πŸ™‚

      Author's profile photo Edwin Vleeshouwers
      Edwin Vleeshouwers

      And then a Cleaner Code Cleaner, where the Code has been Cleaned... Because of course, any Code Cleaner will have to be written... Sparkly Clean.

      Author's profile photo Former Member
      Former Member

      Great review, very nice blog to read.

      You even drew a smile every now and then and I am not even a programmer (at least not for a living).

      I think most programmers can relate to what you tell about people but to be honoust, I think most people in any troubleshooting/problem solving job can. (At least, it is also like this for me).

      For me, it is also heartwarming to see that I am not the only person that thinks that 'organic code' (as I like to call legacy coded applications) are a nightmare when it comes to current and future maintenance. I am making some progress with our team of developers, however the remaining challenge is to persuade all people that it is indeed benificial to spend more time, effort and money now in this "small" change to avoid this minor effort to be duplicated over and over in the future. I get told to live in the moment, in the now...

      I wonder how other people cope with this

      Author's profile photo Gurunath Kumar Dadamu
      Gurunath Kumar Dadamu

      its true. amazing facts.

      Regards,

      Guru

      Author's profile photo Former Member
      Former Member

      Very Nice and usefull.

      Regards,

      Aditya.

      Author's profile photo Martin Roldan
      Martin Roldan

      Hi Paul

      Very interesting your blog... keep posting.

      Martin

      Author's profile photo Gokulan Natarajan
      Gokulan Natarajan

      Very Nice blog. Keep posting like this.

      Regards,

      Gokulan

      Author's profile photo Mauricio Cruz
      Mauricio Cruz

      I've been using http://pomodoro.me/ for quite some time, and it doesn't feel like cheating πŸ™‚ . I would not be able to use a tomato inside my client's office anyway...

      Great blog, really enjoyed reading it!