<?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: problem exporting text in hebrew in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900797#M376114</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a non-unicode system (how to check this: in system-&amp;gt;status there's a field: Unicode: Yes/No) - then you need to convert your text from system codepage to the UTF-8 encoding. This can be done with class CL_ABAP_CONV_OUT_CE.  The following text &amp;amp; sample program are from the documentation for this class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Ofer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL CL_ABAP_CONV_OUT_CE&lt;/P&gt;&lt;P&gt;____________________________________________________&lt;/P&gt;&lt;P&gt;Short Text&lt;/P&gt;&lt;P&gt;Code Page and Endian Conversion (System Format -&amp;gt; External)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functionality&lt;/P&gt;&lt;P&gt;Instances of the class CL_ABAP_CONV_OUT_CE allow you to convert ABAP data objects to binary data. (That is, data in the system format is converted to an external format.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can convert character sets (for text data) and the byte order (for numeric data).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, there are static methods, which allow you to ascertain the hexadecimal or decimal value in the Unicode codepage for any character in the current codepage. These methods are: CL_ABAP_CONV_OUT_CE=&amp;gt;UCCP and CL_ABAP_CONV_OUT_CE=&amp;gt;UCCPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Relationships&lt;/P&gt;&lt;P&gt;CL_ABAP_CONV_IN_CE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Converts binary data into ABAP data objects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_ABAP_CONV_X2X_CE Converts ABAP data objects between two external binary formats. Bin&amp;amp;#1492;rformaten.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_ABAP_CHAR_UTILITIES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Various attributes and methods for character sets and byte order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_NLS_STRUC_CONTAINER Corrects alignment of structures in containers of type C (or STRING). You need to make this correction if East-Asian characters ("full-width" characters in Chinese, Japanese, and Korean) are to be copied from a non-Unicode to a Unicode system or vice versa. You do not need to make the correction if you use the method CONVERT_STRUC from this class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;In the following example, text from the system codepage is converted to UTF-8 and numbers from the system codepage are converted to little-endian format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    text(4) TYPE c VALUE 'ABC',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    int TYPE i VALUE 258.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    buffer1 TYPE xstring,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    buffer2 TYPE xstring,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    conv TYPE REF TO cl_abap_conv_out_ce.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  conv = cl_abap_conv_out_ce=&amp;gt;create(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           encoding = 'UTF-8'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           endian = 'L' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  conv-&amp;gt;convert( EXPORTING data = text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                         IMPORTING buffer = buffer1 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  conv-&amp;gt;convert( EXPORTING data = int&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                         IMPORTING buffer = buffer2 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calling the CREATE method creates a conversion instance. For example, the target codepage or the byte order used in the input buffer can be specified as the parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After calling the CONVERT method, the buffer1 variable contains the 4 bytes 41424320 (hexadecimal) that represent the string "ABC" in UTF-8. The buffer2 variable contains the 4 bytes 02010000 that represent the value 258 in little-endian format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 21 Jan 2007 08:14:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-21T08:14:12Z</dc:date>
    <item>
      <title>problem exporting text in hebrew</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900794#M376111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When using the OPEN DATASET...CLOSE DATASET code to save content from the SAP system into an external file, I ran across an annoying problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the relevant sample of the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open dataset CURR_FILE in text mode for output encoding utf-8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;transfer CURR_LINE to CURR_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;close dataset CURR_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The purpose of the process was to create a file that could be opened by a certain different program that can only read CSV files. The information went properly except for fonts in hebrew which came out as jiberish. That same text was okay when opened as a text file, and the same code was okay when used in a previous SAP system which is pre-unicode, but due to the new UTF8 standard, this problem surfaced. When opened in EXCEL the text shows the same jiberish content in hebrew fonts, unless it's imported through the excel import wizard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is an option to save the file as non-unicode by declaring it in the OPEN DATASET line, but this causes a short dump when the TRANSFER command is called. I currently have no option to handle the file externally after it's created as it is transfered automatically once created. If anyone knows of a solution to this problem. I'd be grateful for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Jan 2007 19:10:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900794#M376111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-20T19:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem exporting text in hebrew</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900795#M376112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi please check whether you are working on a Unicode system or not first&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not then check whether u have the language packs installed on ur system&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Run the program RSCINST in SE38 which throws a pop up if u work on a Unicode system and also shows what are the language packs currently installed on ur system.... if u dont have Hebrew installed then u need to contact Basis People for installion of that language pack&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;award points if found helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 06:15:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900795#M376112</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2007-01-21T06:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: problem exporting text in hebrew</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900796#M376113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try Encoding Default in open dataset. This may solve your problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Asvhen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 08:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900796#M376113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-21T08:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: problem exporting text in hebrew</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900797#M376114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a non-unicode system (how to check this: in system-&amp;gt;status there's a field: Unicode: Yes/No) - then you need to convert your text from system codepage to the UTF-8 encoding. This can be done with class CL_ABAP_CONV_OUT_CE.  The following text &amp;amp; sample program are from the documentation for this class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Ofer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL CL_ABAP_CONV_OUT_CE&lt;/P&gt;&lt;P&gt;____________________________________________________&lt;/P&gt;&lt;P&gt;Short Text&lt;/P&gt;&lt;P&gt;Code Page and Endian Conversion (System Format -&amp;gt; External)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functionality&lt;/P&gt;&lt;P&gt;Instances of the class CL_ABAP_CONV_OUT_CE allow you to convert ABAP data objects to binary data. (That is, data in the system format is converted to an external format.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can convert character sets (for text data) and the byte order (for numeric data).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, there are static methods, which allow you to ascertain the hexadecimal or decimal value in the Unicode codepage for any character in the current codepage. These methods are: CL_ABAP_CONV_OUT_CE=&amp;gt;UCCP and CL_ABAP_CONV_OUT_CE=&amp;gt;UCCPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Relationships&lt;/P&gt;&lt;P&gt;CL_ABAP_CONV_IN_CE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Converts binary data into ABAP data objects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_ABAP_CONV_X2X_CE Converts ABAP data objects between two external binary formats. Bin&amp;amp;#1492;rformaten.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_ABAP_CHAR_UTILITIES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Various attributes and methods for character sets and byte order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_NLS_STRUC_CONTAINER Corrects alignment of structures in containers of type C (or STRING). You need to make this correction if East-Asian characters ("full-width" characters in Chinese, Japanese, and Korean) are to be copied from a non-Unicode to a Unicode system or vice versa. You do not need to make the correction if you use the method CONVERT_STRUC from this class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;In the following example, text from the system codepage is converted to UTF-8 and numbers from the system codepage are converted to little-endian format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    text(4) TYPE c VALUE 'ABC',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    int TYPE i VALUE 258.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    buffer1 TYPE xstring,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    buffer2 TYPE xstring,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    conv TYPE REF TO cl_abap_conv_out_ce.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  conv = cl_abap_conv_out_ce=&amp;gt;create(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           encoding = 'UTF-8'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           endian = 'L' ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  conv-&amp;gt;convert( EXPORTING data = text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                         IMPORTING buffer = buffer1 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  conv-&amp;gt;convert( EXPORTING data = int&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                         IMPORTING buffer = buffer2 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calling the CREATE method creates a conversion instance. For example, the target codepage or the byte order used in the input buffer can be specified as the parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After calling the CONVERT method, the buffer1 variable contains the 4 bytes 41424320 (hexadecimal) that represent the string "ABC" in UTF-8. The buffer2 variable contains the 4 bytes 02010000 that represent the value 258 in little-endian format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 08:14:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900797#M376114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-21T08:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: problem exporting text in hebrew</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900798#M376115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answers.&lt;/P&gt;&lt;P&gt;The system is Unicode (otherwise, i wouldn't have had the problem).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 08:59:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900798#M376115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-21T08:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: problem exporting text in hebrew</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900799#M376116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the program marked as unicode-compatible and did it pass extended check/code inspector when the unicode flag was on?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, can you give the exact hebrew character that you expect to see, its original Hex value in the debuggger, and its Hex value found in the file that was created? Is the value in the file different than the value in the program?&lt;/P&gt;&lt;P&gt;How can you tell that the hebrew is "garbaged"? Did you view the file in IE with the UTF-8 encoding?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Ofer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 10:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900799#M376116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-21T10:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: problem exporting text in hebrew</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900800#M376117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ofer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program is marked unicode-compatible and it passed the inspections. It creates hebrew fonts in the file without any problem, and those hebrew fonts can be seen without garbaging when opened as a text file or when opened through the import function of Excel or when opened when using IE. What I'm looking for is a way to lose the unicode prior to downloading so that it can be opened in CSV format (the excel format that seperates items with comas).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The proper way should be the non-unicode definition but this definition causes a dump when I use the TRANSFER command to move data into the file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 12:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900800#M376117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-21T12:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: problem exporting text in hebrew</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900801#M376118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like you don't need to write the file as Unicode, but as simple ASCII.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the docu for class CL_ABAP_CONV_OUT_CE and use it to convert from unicode to ascii.&lt;/P&gt;&lt;P&gt;After that you should call &amp;lt;b&amp;gt;OPEN DATASET IN LEGACY MODE&amp;lt;/b&amp;gt; and write the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;Ofer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 12:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900801#M376118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-21T12:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: problem exporting text in hebrew</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900802#M376119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK. The problem was solved after using the directions provided by Ofer, the standard program RSCP_convert_file, and letting go of the standard NON-UNICODE code page 1100 for code page 1824 (which was found after a great deal of experimenting). The 'open dataset' line is now:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET filename FOR OUTPUT IN LEGACY TEXT MODE CODE PAGE '1824'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2007 15:52:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-exporting-text-in-hebrew/m-p/1900802#M376119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-21T15:52:05Z</dc:date>
    </item>
  </channel>
</rss>

