<?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: Giving short dump while reading the data from application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459372#M1056939</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;use the binary mode instead of text mode and remove encoding all those things&lt;/P&gt;&lt;P&gt;hope it will work&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Sep 2008 08:23:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-15T08:23:27Z</dc:date>
    <item>
      <title>Giving short dump while reading the data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459371#M1056938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to upload a text file into an application server file.My text file is having special characters like " ä " in some of the lines of the text file.After uploading the data into an application server these special characters are replaced by '#'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If any body knows pls. help me on this to avoid these replacements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and as well when i am reading this text file from AS into an internal table using read dataset statement when the system encounters this character '#' system is going for short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below statement i have used to read the AS file.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------------" /&gt;&lt;P&gt;OPEN DATASET d_file_dir FOR INPUT IN TEXT MODE ENCODING DEFAULT WITH SMART LINEFEED.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE e101(yz) WITH d_file_dir.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DO.&lt;/P&gt;&lt;P&gt;      READ DATASET d_file_dir INTO i_format_file.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;     APPEND i_format_file.&lt;/P&gt;&lt;P&gt;    ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, please help me on this issue if anyone faced.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;babu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 08:18:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459371#M1056938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T08:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: Giving short dump while reading the data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459372#M1056939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;use the binary mode instead of text mode and remove encoding all those things&lt;/P&gt;&lt;P&gt;hope it will work&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 08:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459372#M1056939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T08:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Giving short dump while reading the data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459373#M1056940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you doing cross platform transfers?&lt;/P&gt;&lt;P&gt;I mean is the file comming from a UNIX sytem to a Windows system or vice versa. read dataset normally doesnt read the end of line character unless the file was transfered incorrectly. IF you are doing cross platfor transfers you have to select the appropriate transfer mode so that the unix end of line character is replaced by windows end of line character or vice versa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the above statement is true for you then the hash you see is not actually a hash, instead it is the end of line character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just use the right transfer mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 08:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459373#M1056940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T08:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Giving short dump while reading the data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459374#M1056941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try FMs,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVFILE_CLIENT_TO_SERVER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVFILE_SERVER_TO_CLIENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeet K Bhatt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 08:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459374#M1056941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T08:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Giving short dump while reading the data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459375#M1056942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try FMs,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVFILE_CLIENT_TO_SERVER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ARCHIVFILE_SERVER_TO_CLIENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jeet K Bhatt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 09:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459375#M1056942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T09:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Giving short dump while reading the data from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459376#M1056943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using ECC6.0 so if i remove those encoding keywords its giving the syntax error when i run the UCCHECK transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2008 10:34:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/giving-short-dump-while-reading-the-data-from-application-server/m-p/4459376#M1056943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-15T10:34:29Z</dc:date>
    </item>
  </channel>
</rss>

