Wednesday, February 24, 2010

Hello world!

One of the simpliest programs that you can create in abap, is the famous Hello World.


report y_hello_world.

write:/ 'Hello World!'.

Thursday, February 18, 2010

Scan string in ABAP programs

As with sapscript, sometimes we need to find certain strings present in abap source code. For this, sap provides us with an interesting program: RPR_ABAP_SOURCE_SCAN

Scan string in SAPScript Sources

Every now and then, there is the need to find an particular string in multiple layouts/languages. This could be done by displaying the form info and search there. However, this is painfully slow and boring. For that need, I've created a small and simple program that can show if an form has that string. Below is the source code for it. Just create an empty program and copy & paste. Enjoy.