<?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: upload source code from text file and then to internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520200#M238977</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u Srikanth. It worked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sathya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Sep 2006 04:54:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-01T04:54:25Z</dc:date>
    <item>
      <title>upload source code from text file and then to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520196#M238973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to upload source code from a text file and then to internal table so that read report can be used.it is urgent please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2006 04:29:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520196#M238973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T04:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: upload source code from text file and then to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520197#M238974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use internal table type  string...&lt;/P&gt;&lt;P&gt;upload source code from text file  to intenal table  using fm &amp;lt;b&amp;gt;gui_upload.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2006 04:31:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520197#M238974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T04:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: upload source code from text file and then to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520198#M238975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        line type string,&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt; EXPORTING &lt;/P&gt;&lt;P&gt;  FILENAME = 'C:\Testfile.txt'&lt;/P&gt;&lt;P&gt;  filetyp  = 'ASC'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    tables = itab&lt;/P&gt;&lt;P&gt;*--exceptions... call this GUI_UPLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now your ITAB will have the source code from the text file.&lt;/P&gt;&lt;P&gt;YOU can not use READ report to create program.&lt;/P&gt;&lt;P&gt;that is to read the source code from an existing program.&lt;/P&gt;&lt;P&gt;here is the way to create a program dynamically&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;INSERT REPORT &amp;lt;prog&amp;gt; FROM &amp;lt;itab&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;If a program with this name does not already exist, it is created with the following attributes:&lt;/P&gt;&lt;P&gt;Title: None&lt;/P&gt;&lt;P&gt;Type: 1 (report)&lt;/P&gt;&lt;P&gt;Application: S (basis)&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;SRIKANTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2006 04:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520198#M238975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T04:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: upload source code from text file and then to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520199#M238976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declate one internal table with one field of type string or char(5000) , then use use GUI_UPLOAD FM to upload to that internal table ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then u can use READ REPORT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2006 04:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520199#M238976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T04:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: upload source code from text file and then to internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520200#M238977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u Srikanth. It worked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sathya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Sep 2006 04:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-source-code-from-text-file-and-then-to-internal-table/m-p/1520200#M238977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-01T04:54:25Z</dc:date>
    </item>
  </channel>
</rss>

