<?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: How to download a report program to notepad? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649884#M879084</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;The approach for downloading to a notepad maynot be very be useful The report will have includes,function modules etc... Also it will have screens which you cannot download on notepad!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So do one thing. Include the report with all its components : includes,screens etc..in a transport request. Do it though SE80 transaction. Once done release the transport request. This will result in creation of data file and co file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now at OS level you can get these files and then you can copy them on CD/DVD. Put these files i the respective folders of your target system and import the transport. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is Z report and has a Z development class/message class I would suggest including it also in the transports. Development class/message class availability before the report import happens is a must. So include every thing in the transport and use data files and co-files. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please award points for useful answers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anup.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2008 11:31:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-16T11:31:58Z</dc:date>
    <item>
      <title>How to download a report program to notepad?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649877#M879077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to download a report program with includes to notepad?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:21:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649877#M879077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to download a report program to notepad?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649878#M879078</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;use the function module gui_download &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;      test type i,&lt;/P&gt;&lt;P&gt;      test1(5) type c,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      itab-test = '1'.&lt;/P&gt;&lt;P&gt;      itab-test1 = 'venky'.&lt;/P&gt;&lt;P&gt;      append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       itab-test = '2'.&lt;/P&gt;&lt;P&gt;      itab-test1 = 'hello'.&lt;/P&gt;&lt;P&gt;      append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      itab-test = '3'.&lt;/P&gt;&lt;P&gt;      itab-test1 = 'test'.&lt;/P&gt;&lt;P&gt;      append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; data : file type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; file = 'C:\Documents and Settings\venkatapp\Desktop\test.txt' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                        = FILE&lt;/P&gt;&lt;P&gt;   FILETYPE                        = 'ASC'&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;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:24:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649878#M879078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to download a report program to notepad?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649879#M879079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to tcode se38&lt;/P&gt;&lt;P&gt;give your report and click on display.&lt;/P&gt;&lt;P&gt;after this you be able to find a icon save in loval file under your program name with white icon and yellow arrow . click on this you can save it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649879#M879079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to download a report program to notepad?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649880#M879080</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;BKD_DOWNLOAD using this standard program u can download any Zprograms....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other way is&lt;/P&gt;&lt;P&gt;downloading the INCLUDEs individually.&lt;/P&gt;&lt;P&gt;you need to click on the include,then go to Utilities-&amp;gt;download.&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;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:24:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649880#M879080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to download a report program to notepad?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649881#M879081</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;you can't download at a time.&lt;/P&gt;&lt;P&gt;Do it separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:26:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649881#M879081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to download a report program to notepad?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649882#M879082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OPen the program in SE80.&lt;/P&gt;&lt;P&gt;Then download each include at a time.&lt;/P&gt;&lt;P&gt;This way, you wil not miss any include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not possible to download all the includes in a single go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi Kanth talagana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:30:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649882#M879082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to download a report program to notepad?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649883#M879083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:31:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649883#M879083</guid>
      <dc:creator>ak_upadhyay</dc:creator>
      <dc:date>2008-04-16T11:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to download a report program to notepad?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649884#M879084</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;The approach for downloading to a notepad maynot be very be useful The report will have includes,function modules etc... Also it will have screens which you cannot download on notepad!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So do one thing. Include the report with all its components : includes,screens etc..in a transport request. Do it though SE80 transaction. Once done release the transport request. This will result in creation of data file and co file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now at OS level you can get these files and then you can copy them on CD/DVD. Put these files i the respective folders of your target system and import the transport. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is Z report and has a Z development class/message class I would suggest including it also in the transports. Development class/message class availability before the report import happens is a must. So include every thing in the transport and use data files and co-files. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please award points for useful answers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anup.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 11:31:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649884#M879084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T11:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to download a report program to notepad?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649885#M879085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using transaction SE38 display your program . Then goto Utilities menu -------&amp;gt; More Utilities --------&amp;gt;&lt;/P&gt;&lt;P&gt;Upload/Download -----------&amp;gt; Download. Then a pop-up window is displayed in which the filepath has to be described. Save the filename in '.txt' format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2012 05:05:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-a-report-program-to-notepad/m-p/3649885#M879085</guid>
      <dc:creator>mayur_priyan</dc:creator>
      <dc:date>2012-04-11T05:05:39Z</dc:date>
    </item>
  </channel>
</rss>

