<?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 Creation Problem in FTP Server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186665#M1000778</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for sharing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Greetson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jul 2008 17:49:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-18T17:49:47Z</dc:date>
    <item>
      <title>XML File Creation Problem in FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186661#M1000774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.. Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Internal Table is as follows&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Types: Begin of ty_xmlfile,
         xmlline(60000)        type C,
       End of ty_xmlfile.

Data: it_xmlfile type standard table of ty_xmlfile,
        wa_xmlfile type ty_xmlfile.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I download the file to my desktop using  GUI_DOWNLOAD. It works fine &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

 CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            BIN_FILESIZE = lv_size
            FILENAME     = lv_file_name
            FILETYPE     = 'ASC'
          TABLES
            DATA_TAB     = it_xmlfile
          EXCEPTIONS
            OTHERS       = 10.
        IF SY-SUBRC &amp;lt;&amp;gt; 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the debug mode when I download the internal table(IT_XMLFILE) into an excel file it doesn't open and it says tag is missinig(/basic_material_text) and also when I create the file in Application Server and transfer it to FTP Server it doesn't open there..and also in debug mode I find the length until  &lt;STRONG&gt;DIMENSION AN&lt;/STRONG&gt;.. for that row when I double click on that line in debug mode it shows all the text until &amp;lt;/baisc_material_Text&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&amp;lt;basic_material_text&amp;gt;4.500 +.000/-.010 O.D. X 213.0&amp;amp;quot; LG.(F)                      (A)ASTM A276 CONDITION &amp;amp;quot;A&amp;amp;quot; 317LTYPICAL MILL CERTS REQ&amp;amp;apos;D.DIMENSION REFERENCE:(A) = ALLOWANCE IS INCLUDED FOR MACHINING(F) = THIS IS A FINISHED DIMENSION AN*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above statement is incomplete when the file is open in FTP Server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when the file is created on to my desktop. It displays all the text....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&amp;lt;basic_material_text&amp;gt;4.500 +.000/-.010 O.D. X 213.0" LG.(F) (A)ASTM A276 CONDITION "A" 317LTYPICAL MILL CERTS REQ'D.DIMENSION REFERENCE:(A) = ALLOWANCE IS INCLUDED FOR MACHINING(F) = THIS IS A FINISHED DIMENSION AND WILL BE USED AS RECEIVED(T) = TO FINISH TO THIS DIMENSION FOR FORGING AND BILLET MATERIAL ONLYVENDOR TO SUPPLY THE FOLLOWING ENGINEERING/QUALITY ASSURANCE DATA&lt;STRONG&gt;TYPICAL MILL TEST CERTIFICATES/&lt;/STRONG&gt;CERTIFICATES MUST ACCOMPANY THE MATERIAL.* COPIES REQUIRED:(2)&lt;STRONG&gt;ALL CERTIFICATES MUST HAVE LIGHTNIN PART NO.&lt;/STRONG&gt;CLEARLY MARKED ON THEM.* COPIES REQUIRED:(2)&amp;lt;/basic_material_text&amp;gt; *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could not understand why it takes only until DIMENSION AN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions would be very helpful...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chaitanya&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;-Points will be awarded for helpful answers.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 15:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186661#M1000774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T15:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: XML File Creation Problem in FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186662#M1000775</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 think each XML Line will be of length 256. So I have to split the String into 256 of each Line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_blogpost" href="https://community.sap.com/" __jive_macro_name="blogpost" modifiedtitle="true" __default_attr="41007"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope  it works out....I will try for that and Close the Post...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;chaitanya K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 16:54:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186662#M1000775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T16:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: XML File Creation Problem in FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186663#M1000776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for sharing the results with the forums members.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Greetson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 17:32:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186663#M1000776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T17:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: XML File Creation Problem in FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186664#M1000777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it worked out..and I have to Split the string the MAX is 256. If the PO Header text or Item Text is more than 256 Chars. Split by using offset or...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chaitanya K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 17:40:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186664#M1000777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T17:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: XML File Creation Problem in FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186665#M1000778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for sharing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Greetson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 17:49:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186665#M1000778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T17:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: XML File Creation Problem in FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186666#M1000779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chaitanya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you let me know how did you download your data in ITAB in xml format in application server. I mean how did you create a XML file on application server?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 09:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186666#M1000779</guid>
      <dc:creator>former_member213215</dc:creator>
      <dc:date>2008-11-17T09:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: XML File Creation Problem in FTP Server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186667#M1000780</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 need to also save an XML to FTP. Could you kindly help on this? I think the file need to be converted to the format accepted in FTP. Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jun 2010 10:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-creation-problem-in-ftp-server/m-p/4186667#M1000780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-18T10:36:32Z</dc:date>
    </item>
  </channel>
</rss>

