<?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: XML File not fully downloaded Fully from Application Server. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-not-fully-downloaded-fully-from-application-server/m-p/8009903#M1607613</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 downloading the file from the application server using the TCode CG3Y on your local machine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use the FM &lt;STRONG&gt;GUI_UPLOAD&lt;/STRONG&gt; to upload the contents in an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Aug 2011 09:28:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-08-03T09:28:52Z</dc:date>
    <item>
      <title>XML File not fully downloaded Fully from Application Server.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-not-fully-downloaded-fully-from-application-server/m-p/8009902#M1607612</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;I am downloading an XML file from Application server. It's only downloading partially. Below is the Declaration for target Internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF infile OCCURS 0,&lt;/P&gt;&lt;P&gt;        line(65535) TYPE c,&lt;/P&gt;&lt;P&gt;      END OF infile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP does not allow more than 65535 characters for a data type of type C. So its only downloading till that length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I am using type as STRING, its downloading in different format. Also its not allowing me to put these data into internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my code for downloading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET p_unix IN TEXT MODE MESSAGE msg.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE i001(38) WITH 'Error on Open of File: ' msg.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WHILE sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        READ DATASET p_unix INTO infile.&lt;/P&gt;&lt;P&gt;        CHECK sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        APPEND infile.&lt;/P&gt;&lt;P&gt;        ENDWHILE.&lt;/P&gt;&lt;P&gt;      CLOSE DATASET p_unix.&lt;/P&gt;&lt;P&gt;Is there any way to convert string into XML format &amp;amp; put it in the internal table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest me any other way, so I can download the entire set of file into the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Debi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2011 16:16:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-not-fully-downloaded-fully-from-application-server/m-p/8009902#M1607612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-20T16:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: XML File not fully downloaded Fully from Application Server.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-not-fully-downloaded-fully-from-application-server/m-p/8009903#M1607613</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 downloading the file from the application server using the TCode CG3Y on your local machine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use the FM &lt;STRONG&gt;GUI_UPLOAD&lt;/STRONG&gt; to upload the contents in an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2011 09:28:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-not-fully-downloaded-fully-from-application-server/m-p/8009903#M1607613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-03T09:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: XML File not fully downloaded Fully from Application Server.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-not-fully-downloaded-fully-from-application-server/m-p/8009904#M1607614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well I had some different issue. I have solved it myself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2011 14:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-not-fully-downloaded-fully-from-application-server/m-p/8009904#M1607614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-03T14:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: XML File not fully downloaded Fully from Application Server.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-not-fully-downloaded-fully-from-application-server/m-p/8009905#M1607615</link>
      <description>&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;Could you please share, how you solved the issue because I am also facing the same issue.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Apr 2020 06:39:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-not-fully-downloaded-fully-from-application-server/m-p/8009905#M1607615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-04-28T06:39:28Z</dc:date>
    </item>
  </channel>
</rss>

