<?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: Error converting internal table data to FLat file in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322938#M510184</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;we need to pass standard table as input check which table u r passing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2007 07:10:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-11T07:10:49Z</dc:date>
    <item>
      <title>Error converting internal table data to FLat file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322936#M510182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAP_CONVERT_TO_TEX_FORMAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i m using this function module to convert my internal table data in to text format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i m getting a dump :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Short text&lt;/P&gt;&lt;P&gt;    The current statement is only defined for character-type data objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:07:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322936#M510182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error converting internal table data to FLat file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322937#M510183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;See that all your Internal table fields are of &amp;lt;b&amp;gt;CHAR&amp;lt;/b&amp;gt; type&lt;/P&gt;&lt;P&gt;if not convert them to CHAR type and then use this fun module&lt;/P&gt;&lt;P&gt;it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322937#M510183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Error converting internal table data to FLat file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322938#M510184</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;we need to pass standard table as input check which table u r passing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:10:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322938#M510184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error converting internal table data to FLat file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322939#M510185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My Code looks some thing like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS : truxs.&lt;/P&gt;&lt;P&gt;  DATA : gt_text TYPE truxs_t_text_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM vbak INTO TABLE lt_vbak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SAP_CONVERT_TO_TEX_FORMAT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_field_seperator          = '#'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      i_tab_sap_data             = lt_vbak&lt;/P&gt;&lt;P&gt;   CHANGING&lt;/P&gt;&lt;P&gt;     i_tab_converted_data       = gt_text.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:11:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322939#M510185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Error converting internal table data to FLat file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322940#M510186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i m using many fields how will it be posible to change aal the fields to char type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like there can be more than 100 fiels in a table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322940#M510186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error converting internal table data to FLat file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322941#M510187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using this for table VBAK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:14:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322941#M510187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error converting internal table data to FLat file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322942#M510188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try using dataset then,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET outfile_fcsr FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;LOOP AT lt_vbak into wa_vbak.&lt;/P&gt;&lt;P&gt;TRANSFER wa_vbak TO outfile_fcsr.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;CLOSE DATASET outfile_fcsr. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where outfile_fcsr is file path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sooness.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322942#M510188</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2007-06-11T07:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Error converting internal table data to FLat file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322943#M510189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sooness,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the thing is i do not want to save my file to the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to pass this file to the LInux server through FTP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; will be using ftp_connect, ftp_command, ftp_r3_to_server commands after this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:31:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-converting-internal-table-data-to-flat-file/m-p/2322943#M510189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:31:26Z</dc:date>
    </item>
  </channel>
</rss>

