<?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: Data transfer error(application server) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-error-application-server/m-p/4398671#M1045677</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur answer&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; I am using fixed length file. I am getting 900 characters data (divided into 48 fields). when I am transfering data into file I couldnt divide filed by field as u said. Can u tell me any other alternate?&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;Dhanu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 Aug 2008 08:47:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-16T08:47:39Z</dc:date>
    <item>
      <title>Data transfer error(application server)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-error-application-server/m-p/4398669#M1045675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While uploading data into application server, I have an issue. I am having the data in internal table but I am unable to send all the data into application server.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;(open dataset file for output )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSFER l_h_tbl_file  TO fu_wk_get_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data in internal table:&lt;/P&gt;&lt;P&gt;f1 f2 f3 f4 f5&lt;/P&gt;&lt;P&gt;1  2   -  4  5  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after update to application server:&lt;/P&gt;&lt;P&gt;f1 f2 f3 f4 f5&lt;/P&gt;&lt;P&gt;1  2   -  -  -  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting 2 fields only. if any blank filed(f3) exist between those fields remaining fields also getting blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can proceed further?&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;Dhanu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2008 07:43:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-error-application-server/m-p/4398669#M1045675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-16T07:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: Data transfer error(application server)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-error-application-server/m-p/4398670#M1045676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this..instead of moving field by field into the file 1st convert all he fields to a character stream..and then move that steam to file. Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at internal table into l_h_tbl_file.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;concatenate l_h_tbl_file-f1 l_h_tbl_file-f2 l_h_tbl_file-f3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;l_h_tbl_file-f4 l_h_tbl_file-f5 into g_string.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TRANSFER g_string TO fu_wk_get_file.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2008 08:05:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-error-application-server/m-p/4398670#M1045676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-16T08:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Data transfer error(application server)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-error-application-server/m-p/4398671#M1045677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur answer&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; I am using fixed length file. I am getting 900 characters data (divided into 48 fields). when I am transfering data into file I couldnt divide filed by field as u said. Can u tell me any other alternate?&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;Dhanu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Aug 2008 08:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-transfer-error-application-server/m-p/4398671#M1045677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-16T08:47:39Z</dc:date>
    </item>
  </channel>
</rss>

