The following example explain how to execute operating system commands with abap statements :
REPORT zexec_cmd.
*----------------------------------------------------------
*
* www.developerpages.gr
*
* execute operating system command
*----------------------------------------------------------
data : v_command(255).
DATA: BEGIN OF TABL OCCURS 0,
LINE(255),
END OF TABL.
REPORT zexec_cmd.
*----------------------------------------------------------
*
* www.developerpages.gr
*
* execute operating system command
*----------------------------------------------------------
data : v_command(255).
DATA: BEGIN OF TABL OCCURS 0,
LINE(255),
END OF TABL.