Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP

Former Member
0 Likes
363

What is the difference between Run-Time & Compile-Time activities of ABAP?

regards,

Sharayu

1 ACCEPTED SOLUTION
Read only

matt
Active Contributor
0 Likes
336

ABAP is an interpreted language, not compiled. However, when a program is run for the first time, it is converted to a more efficient form for the interpreter. This is the "compile time". Programs are compiled in this way once per application server. They are not compiled again until the program is changed.

Run-time is what happens when the program is actually being used.

matt

1 REPLY 1
Read only

matt
Active Contributor
0 Likes
337

ABAP is an interpreted language, not compiled. However, when a program is run for the first time, it is converted to a more efficient form for the interpreter. This is the "compile time". Programs are compiled in this way once per application server. They are not compiled again until the program is changed.

Run-time is what happens when the program is actually being used.

matt