Sometimes we require to call another ABAP program from a current running ABAP program ( list ). Here we are going to check the available methods for that. There are two methods for achieving this. They are
Using SUBMIT method , we are calling another program and it will start execute immediately. And the current program will continue after the execution of that program.
In LEAVE method we are leaving the current program and going to the called program. By clicking the above links, you will get more idea about the usage and syntax of these ABAP keywords.