<?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: Dump while transferring records to Application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656077#M1573611</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;Each field of your internal table should be char type C,N,String etc..&lt;/P&gt;&lt;P&gt;Check whether KALA structure has any Interger,float type fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Avinash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Feb 2011 06:36:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-14T06:36:36Z</dc:date>
    <item>
      <title>Dump while transferring records to Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656076#M1573610</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;I am trying to transfer my internal table data to application server. Before that i tried one test program for to transfer one field to application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i am getting dump like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Short text
    The current statement is only defined for character-type data objects.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My smple program is,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: input_file TYPE string VALUE `/usr/sap/data/test/service/test.txt`,
            wa   TYPE kala.

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

SELECTION-SCREEN END OF BLOCK b1.
OPEN DATASET input_file FOR INPUT  IN   TEXT MODE ENCODING DEFAULT .
wa-kalaid = 'TEST'.
close DATASET input_file.

OPEN DATASET input_file FOR OUTPUT  IN   TEXT MODE ENCODING DEFAULT .
transfer wa to input_file LENGTH 100.
close DATASET input_file.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly guide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 06:13:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656076#M1573610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-14T06:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dump while transferring records to Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656077#M1573611</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;Each field of your internal table should be char type C,N,String etc..&lt;/P&gt;&lt;P&gt;Check whether KALA structure has any Interger,float type fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Avinash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 06:36:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656077#M1573611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-14T06:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dump while transferring records to Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656078#M1573612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its because the structure KALA has two fields MAXE, MAXW which are of type INT4 which will dump when transffered to application server. Declare a local strcture of the type KALA replacing the above mentioned fields with type C and try again. It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 06:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656078#M1573612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-14T06:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dump while transferring records to Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656079#M1573613</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;KALA fields MAXE and MAXW are not character like, they are not useable in TEXT MODE!&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;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 06:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656079#M1573613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-14T06:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dump while transferring records to Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656080#M1573614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Lot...&lt;/P&gt;&lt;P&gt;Every one gave the right answer..now how to give full mark??? confusion now.. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks dears&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 06:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656080#M1573614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-14T06:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dump while transferring records to Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656081#M1573615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Isn't this something you could have solved yourself? The error message is quite straightforward, for ABAP developers at least.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes people give similar replies within a few minutes, when the other replies are not visible yet. Happens mostly for "easy" problems...&lt;/P&gt;&lt;P&gt;Usually the first correct reply should be marked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 10:46:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-transferring-records-to-application-server/m-p/7656081#M1573615</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2011-02-14T10:46:04Z</dc:date>
    </item>
  </channel>
</rss>

