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

How to call third party software from Ecc6 using ABAP

Former Member
0 Likes
493

Hi all,

I need to execute a third party software using abap coding .

The software converts doc to pdf, the input from ecc6 would be the file path.

I need to do this using ABAP.

thanks

ziv.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
458

Hi Ziv

You can use METHOD cl_gui_frontend_services=>execute

EXPORTING

application = <<<.exe file>>>

operation = 'OPEN'

to run .exe files

Best Regards

Yossi

Hi all,

I need to execute a third party software using abap coding .

The software converts doc to pdf, the input from ecc6 would be the file path.

I need to do this using ABAP.

thanks

ziv.

2 REPLIES 2
Read only

Former Member
0 Likes
459

Hi Ziv

You can use METHOD cl_gui_frontend_services=>execute

EXPORTING

application = <<<.exe file>>>

operation = 'OPEN'

to run .exe files

Best Regards

Yossi

Read only

0 Likes
458

Thanks Yossi !!