<?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 read issue in unicode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-read-issue-in-unicode/m-p/4887963#M1142064</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;In order that program need to read the special characters without failing,&lt;/P&gt;&lt;P&gt;We need to choose addition "NON-UNICODE" for "OPEN DATASET" statement.&lt;/P&gt;&lt;P&gt;The file  containing the special characters could not be uploaded if Unicode mode is used.&lt;/P&gt;&lt;P&gt;Instead of hardcoding and changing the code each , We can develop the intelligence in our program in simple manner.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Code example:

parameters: uc  radiobutton group enco default 'X',
            nuc radiobutton group enco.

if uc = 'X'.
  open dataset dsn in text mode for input encoding utf-8.
[OR 
open dataset dsn in text mode for input encoding DEFAULT.
NOTE : In Unicode systems, the default encoding is UTF-8 ]
elseif nuc = 'X'.
open dataset dsn in text mode for input encoding non-unicode.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case check the Non-unicode button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Dec 2008 16:28:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-18T16:28:51Z</dc:date>
    <item>
      <title>Data read issue in unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-read-issue-in-unicode/m-p/4887961#M1142062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;We have recently upgraded client system from 4.6C to ECC 6.0 unicode system.&lt;/P&gt;&lt;P&gt;My program is reading a file from application server. This file contains the name and addresses of vendors. The address has a field '#' in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we try to execute the statement 'READ DATASET filename INTO itab', it is giving a dump.&lt;/P&gt;&lt;P&gt;If we remove the character '#' from the data, the READ DATASET is successful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it is not possible to remove # form such a large data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know that is there any system by which we can read the special character # in unicpde system without dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 14:45:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-read-issue-in-unicode/m-p/4887961#M1142062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T14:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Data read issue in unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-read-issue-in-unicode/m-p/4887962#M1142063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     Split the address field before reading the filename .I think this might solve the issue.Pls reply if any further clarification needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Jayavardhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2008 11:57:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-read-issue-in-unicode/m-p/4887962#M1142063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-18T11:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Data read issue in unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-read-issue-in-unicode/m-p/4887963#M1142064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;In order that program need to read the special characters without failing,&lt;/P&gt;&lt;P&gt;We need to choose addition "NON-UNICODE" for "OPEN DATASET" statement.&lt;/P&gt;&lt;P&gt;The file  containing the special characters could not be uploaded if Unicode mode is used.&lt;/P&gt;&lt;P&gt;Instead of hardcoding and changing the code each , We can develop the intelligence in our program in simple manner.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Code example:

parameters: uc  radiobutton group enco default 'X',
            nuc radiobutton group enco.

if uc = 'X'.
  open dataset dsn in text mode for input encoding utf-8.
[OR 
open dataset dsn in text mode for input encoding DEFAULT.
NOTE : In Unicode systems, the default encoding is UTF-8 ]
elseif nuc = 'X'.
open dataset dsn in text mode for input encoding non-unicode.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case check the Non-unicode button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2008 16:28:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-read-issue-in-unicode/m-p/4887963#M1142064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-18T16:28:51Z</dc:date>
    </item>
  </channel>
</rss>

