<?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: Generating Unicode Files in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091134#M100751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Colleen!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad to hear, you solved already most parts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's go into details:&lt;/P&gt;&lt;P&gt;- Are you sure, your file displayer is handling UTF-8 correctly?&lt;/P&gt;&lt;P&gt;- Are files on application server (Unix) and file server identical (not only total size, but every byte)?&lt;/P&gt;&lt;P&gt;- Is UTF-8 correct codepage, or do you need a different codepage version?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't believe there is a problem with the UTF-8 codepage itself, but if you just have problems with two characters: you might replace them with substitution values in file preparation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Nov 2005 16:23:28 GMT</pubDate>
    <dc:creator>christian_wohlfahrt</dc:creator>
    <dc:date>2005-11-07T16:23:28Z</dc:date>
    <item>
      <title>Generating Unicode Files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091129#M100746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know how to create a unicode file using PL/SQL?  I must generate labels and not all the locations are on SAP.  So I download a file from SAP (4.7 non-unicode) and need to send only certain records to a vendor in China. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2005 20:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091129#M100746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-03T20:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: Generating Unicode Files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091130#M100747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Colleen!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create files on application servers, you can use the statements open dataset / transfer / close dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case this could look like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;OPEN DATASET file FOR OUTPUT IN TEXT MODE ENCODING UTF-8. 
TRANSFER `1234567890` TO file. 
CLOSE DATASET file.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2005 07:52:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091130#M100747</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-11-04T07:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: Generating Unicode Files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091131#M100748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Christian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know if with PL SQL I can generate a unicode file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2005 19:14:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091131#M100748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-04T19:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Generating Unicode Files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091132#M100749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is PL/SQL? For me SQL spells standard query language and just helps to get data - up to here no data (file) output is defined.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Nov 2005 19:28:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091132#M100749</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-11-05T19:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: Generating Unicode Files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091133#M100750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to do is send that file from Unix to file server.  It appears that the file is being corrupted.  The trademark and register symbols is being converted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2005 15:17:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091133#M100750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-07T15:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Generating Unicode Files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091134#M100751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Colleen!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad to hear, you solved already most parts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's go into details:&lt;/P&gt;&lt;P&gt;- Are you sure, your file displayer is handling UTF-8 correctly?&lt;/P&gt;&lt;P&gt;- Are files on application server (Unix) and file server identical (not only total size, but every byte)?&lt;/P&gt;&lt;P&gt;- Is UTF-8 correct codepage, or do you need a different codepage version?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't believe there is a problem with the UTF-8 codepage itself, but if you just have problems with two characters: you might replace them with substitution values in file preparation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2005 16:23:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generating-unicode-files/m-p/1091134#M100751</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-11-07T16:23:28Z</dc:date>
    </item>
  </channel>
</rss>

