eclipse-adt-extract-method
When you have a very large method, you should subdivide it into several smaller ones.
When you have a very large method, you should subdivide it into several smaller ones.
They say: Don’t go back to where you were once happy. But the truth is that in many cases, if you could go back, you would.
I like keyboard shortcuts. If I could do my job without taking my hands off my keyboard I’d be an even happier programmer.
Until recently, ABAP has never been one for big collaborations.
Those who still programme monolithically probably don’t feel the need for this. But anyone who uses multiple classes with multiple methods knows that it’s normal (and even desirable) to change your mind about the name of these things. Ideas aren’t born ready-made in our heads. Ideally, code is mouldable and can be shaped until we find the desired form.
ABAP Doc is an excellent way of integrating documentation into the code.
Eclipse ADT calls it Code element information.
Did you know that in Eclipse ADT you can work even without a connection to the server?
Every time you switch contexts, you lose the thread slightly. It’s human nature. So the less you do, the better.
Still using SAPGUI instead of Eclipse ADT? Get ready to be made fun of.
I read somewhere that Eastern mathematicians tend to solve a different kind of mathematical problem than Western mathematicians do.
This post is addressed to the collective character that represents all the people who have told me that they like some things in the new 7.4 functional syntax but think that you shouldn’t overdo it and should avoid using REDUCE
and all the other unnecessarily weird things because the code gets more obscure, it’s slower and they don’t see any advantages.
Are you serious?
We used to use the APPEND
and INSERT
commands to add rows to internal tables. Now that ABAP has grown, we can use VALUE
, REDUCE
, CORRESPONDING
, etc. But what if the internal table already has rows and we don’t want to lose them?
A while ago I showed you that you could SELECT from an internal table. And then I asked myself: if that is possible, shouldn’t INNER JOIN be possible too?