<?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: Downloading Standard Program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312089#M162263</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;Check out these links:&lt;/P&gt;&lt;P&gt;Zhttp://www.sap-img.com/abap/download-and-upload-your-abap-program.htm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.dalestech.com/" target="test_blank"&gt;http://www.dalestech.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://xaption.mjumedia.de/downloads/developer/index.php?language=en&amp;amp;Xaption=567aa0d985c2d8&amp;amp;Xaption=567aa0d985c2d8" target="test_blank"&gt;http://xaption.mjumedia.de/downloads/developer/index.php?language=en&amp;amp;Xaption=567aa0d985c2d8&amp;amp;Xaption=567aa0d985c2d8&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope they help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 May 2006 12:04:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-17T12:04:41Z</dc:date>
    <item>
      <title>Downloading Standard Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312083#M162257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to copy a standard program(SAPMF05A-FB05 transaction).&lt;/P&gt;&lt;P&gt;There are so many includes in that.Again in those includes there are another set of includes are there.&lt;/P&gt;&lt;P&gt;Please let me know if there is any way to do that, instead of copying each and every include separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Sowmmya Balakrishnan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 11:41:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312083#M162257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T11:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Downloading Standard Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312084#M162258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in SE38 there is direct button available to copy.&lt;/P&gt;&lt;P&gt;OR in se80 also has provision.&lt;/P&gt;&lt;P&gt;So u can use that button to copy to z program.&lt;/P&gt;&lt;P&gt;Why do u need to download the report.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 11:46:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312084#M162258</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-05-17T11:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Downloading Standard Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312085#M162259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Sowmmya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with the following Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZDownload.&lt;/P&gt;&lt;P&gt;TABLES TADIR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF T_TYPE,&lt;/P&gt;&lt;P&gt;LINE(72),&lt;/P&gt;&lt;P&gt;END OF T_TYPE.&lt;/P&gt;&lt;P&gt;DATA REP_TABLE TYPE STANDARD TABLE OF T_TYPE WITH&lt;/P&gt;&lt;P&gt;NON-UNIQUE DEFAULT KEY INITIAL SIZE 500.&lt;/P&gt;&lt;P&gt;DATA: FILE TYPE STRING,"RLGRAP-FILENAME.&lt;/P&gt;&lt;P&gt;PATH TYPE STRING.&lt;/P&gt;&lt;P&gt;PARAMETER: OBJ_NAME LIKE TADIR-OBJ_NAME DEFAULT 'Z%'.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: OBJECT FOR TADIR-OBJECT DEFAULT 'PROG',&lt;/P&gt;&lt;P&gt;AUTHOR FOR TADIR-AUTHOR DEFAULT SY-UNAME,&lt;/P&gt;&lt;P&gt;DEVCLASS FOR TADIR-DEVCLASS.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_TABLE OCCURS 0,&lt;/P&gt;&lt;P&gt;OBJ_NAME LIKE TADIR-OBJ_NAME,&lt;/P&gt;&lt;P&gt;END OF IT_TABLE.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF WA_TABLE,&lt;/P&gt;&lt;P&gt;OBJ_NAME LIKE TADIR-OBJ_NAME,&lt;/P&gt;&lt;P&gt;END OF WA_TABLE.&lt;/P&gt;&lt;P&gt;DATA: MESSAGE_TEXT TYPE STRING.&lt;/P&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;IF DEVCLASS-HIGH &amp;lt;&amp;gt; ''.&lt;/P&gt;&lt;P&gt;CONCATENATE 'C:\BACKUP-' SY-DATUM&lt;EM&gt;6(2) '.' SY-DATUM&lt;/EM&gt;4(2) '.'&lt;/P&gt;&lt;P&gt;SY-DATUM+0(4) '-' SY-SYSID '-' DEVCLASS-LOW&lt;/P&gt;&lt;P&gt;'-' DEVCLASS-HIGH '\'&lt;/P&gt;&lt;P&gt;INTO PATH.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CONCATENATE 'C:\BACKUP-' SY-DATUM&lt;EM&gt;6(2) '.' SY-DATUM&lt;/EM&gt;4(2) '.'&lt;/P&gt;&lt;P&gt;SY-DATUM+0(4) '-' SY-SYSID '-' DEVCLASS-LOW&lt;/P&gt;&lt;P&gt;'\'&lt;/P&gt;&lt;P&gt;INTO PATH.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CONDENSE PATH NO-GAPS.&lt;/P&gt;&lt;P&gt;SELECT OBJ_NAME&lt;/P&gt;&lt;P&gt;INTO TABLE IT_TABLE&lt;/P&gt;&lt;P&gt;FROM TADIR&lt;/P&gt;&lt;P&gt;WHERE OBJ_NAME LIKE OBJ_NAME AND&lt;/P&gt;&lt;P&gt;OBJECT IN OBJECT AND&lt;/P&gt;&lt;P&gt;AUTHOR IN AUTHOR AND&lt;/P&gt;&lt;P&gt;DEVCLASS IN DEVCLASS.&lt;/P&gt;&lt;P&gt;SORT IT_TABLE BY OBJ_NAME.&lt;/P&gt;&lt;P&gt;LOOP AT IT_TABLE INTO WA_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ REPORT WA_TABLE-OBJ_NAME INTO REP_TABLE.&lt;/P&gt;&lt;P&gt;IF WA_TABLE-OBJ_NAME CS '\'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CLEAR FILE.&lt;/P&gt;&lt;P&gt;CONCATENATE PATH WA_TABLE-OBJ_NAME '.TXT' INTO FILE.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CALL FUNCTION 'DOWNLOAD'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FILENAME = FILE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FILETYPE = 'ASC' "ASC, WK1, DBF, DAT, bin&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MODE = ' ' "Mode ' ' = Rewrite Mode 'A' = Appending&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DATA_TAB = REP_TABLE.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WRITE: / 'File Saved Successfully'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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 = FILE&lt;/P&gt;&lt;P&gt;FILETYPE = 'ASC'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;APPEND = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WRITE_FIELD_SEPARATOR = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;HEADER = '00'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TRUNC_TRAILING_BLANKS = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WRITE_LF = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;COL_SELECT = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;COL_SELECT_MASK = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DAT_MODE = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CONFIRM_OVERWRITE = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NO_AUTH_CHECK = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CODEPAGE = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IGNORE_CERR = ABAP_TRUE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;REPLACEMENT = '#'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WRITE_BOM = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TRUNC_TRAILING_BLANKS_EOL = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FILELENGTH =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DATA_TAB = REP_TABLE&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FIELDNAMES =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FILE_WRITE_ERROR = 1&lt;/P&gt;&lt;P&gt;NO_BATCH = 2&lt;/P&gt;&lt;P&gt;GUI_REFUSE_FILETRANSFER = 3&lt;/P&gt;&lt;P&gt;INVALID_TYPE = 4&lt;/P&gt;&lt;P&gt;NO_AUTHORITY = 5&lt;/P&gt;&lt;P&gt;UNKNOWN_ERROR = 6&lt;/P&gt;&lt;P&gt;HEADER_NOT_ALLOWED = 7&lt;/P&gt;&lt;P&gt;SEPARATOR_NOT_ALLOWED = 8&lt;/P&gt;&lt;P&gt;FILESIZE_NOT_ALLOWED = 9&lt;/P&gt;&lt;P&gt;HEADER_TOO_LONG = 10&lt;/P&gt;&lt;P&gt;DP_ERROR_CREATE = 11&lt;/P&gt;&lt;P&gt;DP_ERROR_SEND = 12&lt;/P&gt;&lt;P&gt;DP_ERROR_WRITE = 13&lt;/P&gt;&lt;P&gt;UNKNOWN_DP_ERROR = 14&lt;/P&gt;&lt;P&gt;ACCESS_DENIED = 15&lt;/P&gt;&lt;P&gt;DP_OUT_OF_MEMORY = 16&lt;/P&gt;&lt;P&gt;DISK_FULL = 17&lt;/P&gt;&lt;P&gt;DP_TIMEOUT = 18&lt;/P&gt;&lt;P&gt;FILE_NOT_FOUND = 19&lt;/P&gt;&lt;P&gt;DATAPROVIDER_EXCEPTION = 20&lt;/P&gt;&lt;P&gt;CONTROL_FLUSH_ERROR = 21&lt;/P&gt;&lt;P&gt;OTHERS = 22 .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'File download error,Message code:',SY-SUBRC,&lt;/P&gt;&lt;P&gt;' creating file ',FILE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;WRITE: / 'Error Occured'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;MESSAGE_TEXT = 'FILE(S) CREATED IN FOLDER'.&lt;/P&gt;&lt;P&gt;CONCATENATE MESSAGE_TEXT PATH INTO MESSAGE_TEXT SEPARATED BY SPACE.&lt;/P&gt;&lt;P&gt;MESSAGE MESSAGE_TEXT TYPE 'I'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 11:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312085#M162259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T11:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Downloading Standard Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312086#M162260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sowmya,&lt;/P&gt;&lt;P&gt;When you use Copy , click on Includes check box as well.&lt;/P&gt;&lt;P&gt;This shoudl give you screen with all includes , select and rename them.&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Mano Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 11:48:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312086#M162260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T11:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Downloading Standard Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312087#M162261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in se38 if you give that program name &amp;amp; select COPY, &lt;/P&gt;&lt;P&gt;give your target name ZSAPMF05A.&lt;/P&gt;&lt;P&gt;then on the next screen select all check boxes (documentation etc). &amp;amp; now you will see a popup with all the includes exists in that program SAPMF05A. if you want to copy any one of them or all of them then select the check box &amp;amp; give your Z include name in the next field.&lt;/P&gt;&lt;P&gt;it will copy that include to your new z include. else that include will exists in your new program with the same name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 11:52:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312087#M162261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T11:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Downloading Standard Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312088#M162262</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;for downloading all the programs better use the report listed above ...&lt;/P&gt;&lt;P&gt;else for copying a single program goto se38 -&amp;gt; enter the program name and click the copy button above it will prompt u with the new include name give some z stuff and copy all the fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gunjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 11:59:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312088#M162262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T11:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Downloading Standard Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312089#M162263</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;Check out these links:&lt;/P&gt;&lt;P&gt;Zhttp://www.sap-img.com/abap/download-and-upload-your-abap-program.htm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.dalestech.com/" target="test_blank"&gt;http://www.dalestech.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://xaption.mjumedia.de/downloads/developer/index.php?language=en&amp;amp;Xaption=567aa0d985c2d8&amp;amp;Xaption=567aa0d985c2d8" target="test_blank"&gt;http://xaption.mjumedia.de/downloads/developer/index.php?language=en&amp;amp;Xaption=567aa0d985c2d8&amp;amp;Xaption=567aa0d985c2d8&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope they help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 12:04:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312089#M162263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T12:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Downloading Standard Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312090#M162264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am able to copy the first set of Includes which are present in the main program.&lt;/P&gt;&lt;P&gt;Again if we go into the includes present in the main program it has its own set of includes.I am not able copy those includes in single step.&lt;/P&gt;&lt;P&gt;IS copying each and every include separately is the only way to do tht?&lt;/P&gt;&lt;P&gt;please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sowmmya B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 12:05:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312090#M162264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T12:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: Downloading Standard Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312091#M162265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sowmya&lt;/P&gt;&lt;P&gt;Please see the link &lt;A href="https://www.sdn.sap.com/irj/sdn/developerareas/abap?rid=/library/uuid/840ad679-0601-0010-cd8e-9989fd650822" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/developerareas/abap?rid=/library/uuid/840ad679-0601-0010-cd8e-9989fd650822&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in ABAP FAQ's area&lt;/P&gt;&lt;P&gt; Last FAQ gives the code  how to download the ABAP code.&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 12:21:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/downloading-standard-program/m-p/1312091#M162265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T12:21:13Z</dc:date>
    </item>
  </channel>
</rss>

