2009 Jun 03 12:35 PM
Hi,
How to delete a file manually from AL11 or Application server.
Thanks,
Sravanthi
2009 Jun 03 12:39 PM
Execute this Fm with your filename and directory name.
EPS_DELETE_FILE
2009 Jun 03 12:47 PM
Frame ur directory path by defining a variable and use the DELETE option for data set to delete ur particular file.
Example below:
data:w_outfile(50).
concatenate '/' sy-sysid '/abc/xyz/'
into w_outfile.
concatenate w_outfile 'FileName.txt' into w_outfile.
delete dataset w_outfile.
Hope this will help you!
Rahul
2009 Jun 03 12:48 PM
Hi,
write a program in that use the command DELETE DATASET DATASETNAME ( to be deleted).
Regards
Thiru
2009 Jun 03 2:03 PM
Hi
Write a simple test program, take the path of the file from AL11, and Use the statement DELETE DATASET DatasetName.
Thanks
2009 Jun 03 2:06 PM
Hi,
You can make use of DELETE Dataset statement.
But you need to have the relevant authorisation for the same.
Regards,
Ankur Parab