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
566

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.

4 REPLIES 4
Read only

dani_mn
Active Contributor
0 Likes
546

HI,

use the method 'EXECUTE' of class interface 'CL_GUI_FRONTEND_SERVICES' to execute any exe file.

Regards,

Read only

Former Member
0 Likes
546

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

Read only

Former Member
0 Likes
546

hi

good

using the SAP connectors.

thanks

mrutyun^

Read only

Former Member
0 Likes
546

Hi rahul,

CALL FUNCTION 'WS_EXECUTE'

EXPORTING

PROGRAM = 'your_path_here\project.exe'.

Hope this help.

Regards,

Tiwa.