‎2009 Feb 25 1:16 AM
Hi,
How to execute my executable file c:\abc\myprogram.exe from abap. And I want to make sure myprogram.exe is finished execution before continue to the next line in abap. Can paste some code sample?
Thanks.
‎2009 Feb 25 1:31 AM
‎2009 Feb 25 1:31 AM
‎2009 Feb 25 1:47 AM
‎2009 Feb 25 3:02 AM
Hi friend,
Use FM 'GUI_RUN'.
Try this code:
REPORT zdemofun .
CALL FUNCTION 'GUI_RUN'
EXPORTING
command = 'c:\abc\myprogram.exe'.
This will exactly help u.
Thanks..
‎2009 Feb 25 2:40 PM
Hi friend,
Whether it is working for you?
If not reply me.
Thanks..
‎2009 Feb 25 11:10 PM