<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: file delete on server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251638#M776474</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            When ever you want to delete a file from Application Server, Use the &lt;STRONG&gt;DELETE DATASET&lt;/STRONG&gt; syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will resolve your Query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward alll the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nagaraj T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jan 2008 10:53:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-09T10:53:23Z</dc:date>
    <item>
      <title>file delete on server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251636#M776472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to delete a file on appl. server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 10:51:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251636#M776472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T10:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: file delete on server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251637#M776473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: v_ucomm(1000)  TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_aname  TYPE salfile-longname DEFAULT 'N:\usr\sap\global\test'&lt;/P&gt;&lt;P&gt;           &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_ucomm = 'DEL'.&lt;/P&gt;&lt;P&gt;CONCATENATE v_ucomm p_aname INTO v_ucomm SEPARATED BY space.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Execute the delete command.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL 'SYSTEM' ID 'COMMAND' FIELD v_ucomm.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 10:53:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251637#M776473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T10:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: file delete on server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251638#M776474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            When ever you want to delete a file from Application Server, Use the &lt;STRONG&gt;DELETE DATASET&lt;/STRONG&gt; syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will resolve your Query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward alll the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nagaraj T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 10:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251638#M776474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T10:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: file delete on server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251639#M776475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &lt;STRONG&gt;DELETE DATASET &amp;lt;dataset name&amp;gt;&lt;/STRONG&gt; . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use FM &lt;STRONG&gt;EPS_DELETE_FILE&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ie;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use DELETE DATASET with target path. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use statement&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;delete dataset '\tmp\file.txt'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;\tmp\file.txt&lt;/U&gt; is the file path on application server which you want to delete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if found helpful&amp;#133;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;suma sailaja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 10:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251639#M776475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T10:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: file delete on server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251640#M776476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but using DELETE DATASET u can remove file for app server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to delete the data alone then give the same name without data it will overwrite.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can check it in AL11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;md zubair sha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can also use the function module - EPS_DELETE_FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2008 10:56:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-delete-on-server/m-p/3251640#M776476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-09T10:56:12Z</dc:date>
    </item>
  </channel>
</rss>

