<?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: Saving and deleting programs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-and-deleting-programs/m-p/1226655#M138069</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;solved it using transaction SAMT. It works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Mar 2006 14:27:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-31T14:27:36Z</dc:date>
    <item>
      <title>Saving and deleting programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-and-deleting-programs/m-p/1226652#M138066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i know it sounds strange, but: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any tool which saves a whole list ( maybe some hundrets ) of abap's into a transport request or a local file and deletes these programs ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doing this with every single program would be boring ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Wolfgang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 14:49:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-and-deleting-programs/m-p/1226652#M138066</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T14:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: Saving and deleting programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-and-deleting-programs/m-p/1226653#M138067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've never seen any such utility program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 14:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-and-deleting-programs/m-p/1226653#M138067</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-03-30T14:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Saving and deleting programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-and-deleting-programs/m-p/1226654#M138068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi wolfgang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. this program will save&lt;/P&gt;&lt;P&gt;  the list of programs specified&lt;/P&gt;&lt;P&gt;   in the select-options,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   each program to a file,&lt;/P&gt;&lt;P&gt;   (which is specified in the selection screen path)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works FANTASTIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. the file name will be same as that of prgram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. if there are 5 programs,&lt;/P&gt;&lt;P&gt;   it will create 5 files, (in the specified folder)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. just copy paste in new program.&lt;/P&gt;&lt;P&gt;(it won't delete the program)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;DATA : BEGIN OF itab OCCURS 0,&lt;/P&gt;&lt;P&gt;       myline(150) TYPE c,&lt;/P&gt;&lt;P&gt;       END OF itab.&lt;/P&gt;&lt;P&gt;DATA : filename TYPE string.&lt;/P&gt;&lt;P&gt;DATA : jprogid TYPE sy-repid.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : allprog FOR jprogid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : mypath(50) TYPE c DEFAULT 'D:\sap\src' OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-------------------------------" /&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  CONCATENATE mypath '\' allprog-low '.TXT' INTO filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM doprog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt;FORM doprog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT allprog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    REFRESH itab.&lt;/P&gt;&lt;P&gt;    CLEAR itab.&lt;/P&gt;&lt;P&gt;    READ REPORT allprog-low INTO itab.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  BIN_FILESIZE                    =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        filename                        = filename&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        data_tab                        = itab&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "doprog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 14:53:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-and-deleting-programs/m-p/1226654#M138068</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T14:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Saving and deleting programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-and-deleting-programs/m-p/1226655#M138069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;solved it using transaction SAMT. It works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2006 14:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-and-deleting-programs/m-p/1226655#M138069</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-31T14:27:36Z</dc:date>
    </item>
  </channel>
</rss>

