Hi,
I read a excel sheet via OLE...
everything works fine but after closing the sheet there is still a process of excel in the taskmanager, since this is not needed (anyway it doesn't matter if I kill it) I would like to know how to close this process together with the sheet
the excel process gets terminated after I close my report but this is not enough...
for the coding freaks in here: 😉
Close the file
CALL METHOD OF E_WORK 'close'.
Quit the file
CALL METHOD OF E_APPL 'QUIT'.
FREE OBJECT E_APPL.
btw: it does also not proceed the quit command correctly if I place an ABAP command after it...