‎2005 Mar 07 8:23 PM
Can I do it...??? How...???
My release is 46C.
Thanks for the heroes..!!!
‎2005 Mar 07 8:29 PM
Yes, I do believe that you can. I've never done it myself, but if you use a .bat file and execute that .bat file from your ABAP using CL_GUI_FRONTEND_SERVICES method EXECUTE, then yes, I could be possible.
call method cl_gui_frontend_services=>execute
EXPORTING
DOCUMENT = 'C:calljava.bat'.
* APPLICATION =
* PARAMETER =
* DEFAULT_DIRECTORY =
* MAXIMIZED =
* MINIMIZED =
* SYNCHRONOUS =
* EXCEPTIONS
* CNTL_ERROR = 1
* ERROR_NO_GUI = 2
* BAD_PARAMETER = 3
* FILE_NOT_FOUND = 4
* PATH_NOT_FOUND = 5
* FILE_EXTENSION_UNKNOWN = 6
* ERROR_EXECUTE_FAILED = 7
* others = 8
.
if sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
Regards,
Rich Heilman
‎2005 Mar 07 8:36 PM