‎2007 May 11 7:07 AM
how will u call vb project.exe
(executable) file into se38 abap editor. how will u call executable files which it is running in dos prompt into se38 abap editor.
‎2007 May 11 7:12 AM
HI,
use the method 'EXECUTE' of class interface 'CL_GUI_FRONTEND_SERVICES' to execute any exe file.
Regards,
‎2007 May 11 7:23 AM
Hi,
use FM WS_EXECUTE and give parameter program as project.exe with path.
or use cl_gui_frontend_services->execute method.
Jogdand M B
‎2007 May 11 7:34 AM
‎2007 May 11 7:56 AM
Hi rahul,
CALL FUNCTION 'WS_EXECUTE'
EXPORTING
PROGRAM = 'your_path_here\project.exe'.
Hope this help.
Regards,
Tiwa.