2014 Oct 29 9:46 AM
Hello,
I tried to delete a pdf file from application server like this via an abap program:
OPEN DATASET p_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
IF sy-subrc = 0.
DELETE DATASET p_file.
ENDIF.
but the Open dataset does not work for pdf file (subrc = 😎
Is there anay solution the delete pdf file stored in server (under windows) from an abap program
Best regards
2014 Oct 29 10:01 AM
Hi,
Can you please try by calling the function module EPS_DELETE_FILE to delete the file from AL11.
Thanks & Regards,
Polu
2014 Oct 29 9:52 AM
2014 Oct 29 10:01 AM
Hi,
Can you please try by calling the function module EPS_DELETE_FILE to delete the file from AL11.
Thanks & Regards,
Polu
2014 Oct 29 10:05 AM
Thanks for your replies.
Now it's works, i have made a mistake for p_file name