‎2008 Jun 20 9:36 AM
Hi all the wonderful people,
How are you all doing? I have to say: ABAP is the language I love developing in, why? because you guys are helping out and to all of you gurus: Thank you, much appreciated.
I have a problem though, I need to delete or clear the contents of my text file so that I can add new data to it everytime i work with it. I have tried to DELETE or CLEAR but it does not work.
Thank you, points will be awarded if helpful.
Ramorua
‎2008 Jun 20 9:46 AM
for delete text file:
use DELETE <DATASETNAME>
for entering into that use
open dataset <datasetname> for output in birnary mode.
after
transfer file to dataset.
‎2008 Jun 20 9:40 AM
Hi,
please refer to [Working with Files on the Application Server|http://help.sap.com/saphelp_nw70/helpdata/EN/fc/eb3c7f358411d1829f0000e829fbfe/frameset.htm].
This could help you.
Regards Rudi
‎2008 Jun 20 9:42 AM
simply use :
1)delete dataset
or 2)open dataset for output...
A.
‎2008 Jun 20 9:46 AM
for delete text file:
use DELETE <DATASETNAME>
for entering into that use
open dataset <datasetname> for output in birnary mode.
after
transfer file to dataset.