<?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 dump read dataset in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095471#M1972320</link>
    <description>&lt;P&gt;DATA: lv_file TYPE string.&lt;BR /&gt; lv_file = p_server.&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; DATA LV_xstring TYPE xstring.&lt;BR /&gt; &lt;BR /&gt; OPEN DATASET lv_file FOR INPUT IN TEXT MODE ENCODING DEFAULT .&lt;BR /&gt; &lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE e999(zz) WITH 'error'.&lt;BR /&gt; ENDIF.&lt;BR /&gt;&lt;BR /&gt; DO.&lt;BR /&gt; READ DATASET lv_file INTO LV_xstring. "DUMP&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; EXIT.&lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt;"APPEND ls_string TO lt_string.&lt;BR /&gt; ENDDO.&lt;BR /&gt; CLOSE DATASET lv_file.&lt;/P&gt;
  &lt;P&gt;DUMP:&lt;/P&gt;
  &lt;P&gt; For the statement "READ DATASET ... INTO f" only character-type data objects are supported at the argument position "f". In this case. the operand "f" has the non-character-type "y". The current program is a Unicode program. In the Unicode context, the type 'X' or structures containing not only character-type components are regarded as non-character-type.&lt;/P&gt;</description>
    <pubDate>Mon, 11 Nov 2019 11:02:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2019-11-11T11:02:50Z</dc:date>
    <item>
      <title>dump read dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095471#M1972320</link>
      <description>&lt;P&gt;DATA: lv_file TYPE string.&lt;BR /&gt; lv_file = p_server.&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; DATA LV_xstring TYPE xstring.&lt;BR /&gt; &lt;BR /&gt; OPEN DATASET lv_file FOR INPUT IN TEXT MODE ENCODING DEFAULT .&lt;BR /&gt; &lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; MESSAGE e999(zz) WITH 'error'.&lt;BR /&gt; ENDIF.&lt;BR /&gt;&lt;BR /&gt; DO.&lt;BR /&gt; READ DATASET lv_file INTO LV_xstring. "DUMP&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; EXIT.&lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt;"APPEND ls_string TO lt_string.&lt;BR /&gt; ENDDO.&lt;BR /&gt; CLOSE DATASET lv_file.&lt;/P&gt;
  &lt;P&gt;DUMP:&lt;/P&gt;
  &lt;P&gt; For the statement "READ DATASET ... INTO f" only character-type data objects are supported at the argument position "f". In this case. the operand "f" has the non-character-type "y". The current program is a Unicode program. In the Unicode context, the type 'X' or structures containing not only character-type components are regarded as non-character-type.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 11:02:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095471#M1972320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-11-11T11:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: dump read dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095472#M1972321</link>
      <description>&lt;P&gt;Hello &lt;A href="https://answers.sap.com/users/887275/lucatreva.html"&gt;luca treva&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Change the datatype of LV_xstring to String as mentioned below and try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;        DATA: lv_xstring TYPE string.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 11:57:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095472#M1972321</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2019-11-11T11:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: dump read dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095473#M1972322</link>
      <description>&lt;P&gt;this is the  dump try type string:&lt;/P&gt;&lt;P&gt; During conversion of a text from code page '4110' to code page '4103',
 one of the following occurred:
 - Characters were discovered that cannot be displayed in one of the
 code pages
 - The conversion could not be performed for some other reason (see
 below for more details).
 Excerpt from the source buffer from the first character that could not
 be converted, displayed in hexadecimal form (with the ASCII characters
 in brackets):
 "82 CF 6E 01 00 00 04 05 00 00 13 00 08 02 5B 43 (..n...........[C)"
 The system was forced to terminate the current ABAP program 'ZTESTPROVA'
 since the conversion would have produced incorrect data.
 There are 50 of these non-convertible characters. If this number is 0,
 the second of the two scenarios described above applies.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 12:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095473#M1972322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-11-11T12:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: dump read dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095474#M1972323</link>
      <description>&lt;P&gt;&lt;A href="https://answers.sap.com/users/887275/lucatreva.html"&gt;luca treva&lt;/A&gt;, &lt;/P&gt;&lt;P&gt;What is the data we are dealing with, any idea? &lt;/P&gt;&lt;P&gt;This issue is mainly due to certain invalid characters in the path mentioned. &lt;/P&gt;&lt;P&gt;Check from your end if you can find any invalid character in the destined path. &lt;/P&gt;&lt;P&gt;Regards! &lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 15:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095474#M1972323</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2019-11-11T15:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: dump read dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095475#M1972324</link>
      <description>&lt;P&gt;Why do you ask the question twice? (&lt;A href="https://answers.sap.com/questions/12903642/read-csv-from-server-directory.html"&gt;https://answers.sap.com/questions/12903642/read-csv-from-server-directory.html&lt;/A&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 15:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-read-dataset/m-p/12095475#M1972324</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-11-11T15:41:07Z</dc:date>
    </item>
  </channel>
</rss>

