‎2009 Sep 02 12:51 PM
Hi,
I wanted to run command like " C:\ENCRYPT.EXE C:\TEST.TXT " from user command bar thorugh ABAP Code.
can you please guide me.
Thanks Sameer
‎2009 Sep 02 12:54 PM
Hi,
Use cl_gui_frontend_services=>execute
Eg,
CALL METHOD cl_gui_frontend_services=>execute
EXPORTING
application = 'C:\ENCRYPT.EXE '.
Regards,
Vikranth
‎2009 Sep 02 12:55 PM
Hello Sameer,
Check the method EXECUTE of the class CL_GUI_FRONTEND_SERVICES.
BR,
Suhas
‎2009 Sep 02 12:56 PM