Skip to Content
Author's profile photo Jerry Wang

Java byte code and ABAP Load

I use this small blog to help my new colleagues on board who have Java programming background to understand the hello world example written in ABAP.

Hello World example in Java

The following example could be done in pure text editor without Java IDE. You should have JDK installed as prerequisite and corresponding environment variable setup correctly.
Once done, type javac -version in command line, you should see the following output: ( result may vary based on your JDK version )
In my laptop the javac.exe is in this folder:
1. Create a folder in c:\temp\testPackage.
2. Create a file HelloWorld.java in text editor with source code below:
package testPackage;
import tool.Tools;
public class HelloWorld {
	public HelloWorld() {
	}
	static public void main(String[] arg){
		System.out.println("Hello World");
		Tools.Print();
	}
}
Create another folder in C:\temp\tool.
And another Tools.java:
package tool;

public class Tools{
	static public void Print(){
		System.out.println("I am tool!");
	}
}
This example shows that the HelloWorld class has dependency on Tools class.
1. Now compile HelloWorld class via javac:
Once done, HelloWorld.class is generated:
Also the same for Tools.class, even though we do NOT manually compile Tools.java via javac.
2. Now make some change on Tools.java:
And execute HelloWorld, still the old string before change is printed:
3. Compile Tools.java again, new version of Tools.class is generated.
This time execute HelloWorld and you could observe the new string printed out.
And the byte code for HelloWorld is still unchanged.

Byte Code in ABAP – ABAP Load

The following texts are copied from ABAP help:
Result of generating an ABAP program using ABAP Compiler. The statements in the byte code are associated with C functions. When the ABAP program is executed, the byte code is loaded into the PXA as the program load and interpreted by the ABAP runtime environment (virtual machine), which accesses the associated C functions.
Let’s repeat the same test in ABAP.
1. Create a new include ZTOOL and activate it:
form print.
 WRITE: / 'Hello World.'.
endform.
And create a new HelloWorld report and activate it as well.
REPORT ZHELLOWORLD.
INCLUDE ztool.

START-OF-SELECTION.
PERFORM print.
2. Execute report RSDEPEND to analyze the dependency of report ZHELLOWORLD. ( You can find some examples how to use this report RSDEPEND from blog Use report RSDEPEND to analyze ABAP load dependencies )
The result shows that ZHELLOWORLD has dependency on ZTOOL. The timestamp of ZHELLOWORLD is larger than ZTOOL since it is activated later than ZHELLOWORLD.
3. Make some changes on ZHELLOWORLD, for example add one line comment and activate it again.
This time the timestamp of ZHELLOWORLD changes, however ZTOOL remains unchanged.
4. Now make changes on ZTOOL, activate the change. Don’t touch ZHELLOWORLD.
This time the timestamp of ZHELLOWORLD is also changed which equals exactly to the change timestamp of ZTOOL.
The generated ABAP load for a given report could be found from table REPOLOAD:

Further reading

I have written a series of blogs which compare the language feature among ABAP, JavaScript and Java. You can find a list of them below:

Assigned Tags

      4 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Peter Inotai
      Peter Inotai

      Hi Jerry,

      Thanks for this interesting blog. I didn’t know RSDEPEND, but it’s very useful program.

      I’m looking forward to your next blogs ?

      Best regards,

      Peter

      Author's profile photo Andrzej Filusz
      Andrzej Filusz

      Hi Jerry,

      JRE doesn’t include a java compiler (javac). You need to have JDK (Java Development Kit) installed. Please check the below link for details.

      https://www.java.com/en/download/faq/techinfo.xml

      Regards,

      Andrzej

      Author's profile photo Jerry Wang
      Jerry Wang
      Blog Post Author

      Hello Andrzej,

      Thanks a lot for reading and really appreciate that you point it out. I have made corresponding correction in the part.

      Best regards,

      Jerry

      Author's profile photo Former Member
      Former Member

      Coding is interesting when your interest in it. Thanks for sharing this post and these  codes really help me to get new code and I want to share a site where I can also get that amazing codes on http://supportnumbers.net/http://supportnumbers.net/