<?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: Problems with Unicode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-unicode/m-p/4441959#M1053791</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your error is coming from using type X variables I believe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try re-writing the code to use character variables type C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the CR/LF, define a field of length 2 type C then fill it with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Field =  CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then just concatenate this to the other fields (string or char types)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Sep 2008 01:34:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-05T01:34:47Z</dc:date>
    <item>
      <title>Problems with Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-unicode/m-p/4441958#M1053790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello people!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dump described uc_objects_not_charlike. What does it mean?&lt;/P&gt;&lt;P&gt;This code is inside in a include...&lt;/P&gt;&lt;P&gt;Can you help me please???&lt;/P&gt;&lt;P&gt;Follow the code that have a dump:&lt;/P&gt;&lt;P&gt;FORM NEW_LINE_FORMAT TABLES XDOWNTABLE1 XDOWNTABLE2.&lt;/P&gt;&lt;P&gt;  DATA:  WSTR1 TYPE STRING,&lt;/P&gt;&lt;P&gt;         WSTR2 TYPE STRING.&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS: &amp;lt;F&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;  DATA: LEN TYPE P,&lt;/P&gt;&lt;P&gt;        LEN2 TYPE P,&lt;/P&gt;&lt;P&gt;        LEN3 TYPE P.&lt;/P&gt;&lt;P&gt;  DATA: C_NEWLINE(2) TYPE X VALUE '0D0A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR XDOWNTABLE2.&lt;/P&gt;&lt;P&gt;  LOOP AT XDOWNTABLE1.&lt;/P&gt;&lt;P&gt;    IF SY-TABIX EQ 1.&lt;/P&gt;&lt;P&gt;      ASSIGN XDOWNTABLE1 TO &amp;lt;F&amp;gt; TYPE 'X'.&lt;/P&gt;&lt;P&gt;      XDOWNTABLE2 = XDOWNTABLE1.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;*add line feed&lt;/P&gt;&lt;P&gt;      SHIFT &amp;lt;F&amp;gt; RIGHT BY 2 PLACES.  "&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;This line &lt;/P&gt;&lt;P&gt;      &amp;lt;F&amp;gt;+0(2) = C_NEWLINE.&lt;/P&gt;&lt;P&gt;      WSTR1 = XDOWNTABLE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LEN = STRLEN( WSTR1 ).&lt;/P&gt;&lt;P&gt;      WSTR2 = XDOWNTABLE2.&lt;/P&gt;&lt;P&gt;      LEN2 = STRLEN( WSTR2 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LEN3 = LEN2 + LEN.&lt;/P&gt;&lt;P&gt;      IF LEN3 LE 512.&lt;/P&gt;&lt;P&gt;        CONCATENATE WSTR2 WSTR1 INTO WSTR2.&lt;/P&gt;&lt;P&gt;        XDOWNTABLE2 = WSTR2.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        LEN3 = 512 - LEN2.&lt;/P&gt;&lt;P&gt;        CONCATENATE WSTR2 WSTR1(LEN3) INTO WSTR2.&lt;/P&gt;&lt;P&gt;        XDOWNTABLE2 = WSTR2.&lt;/P&gt;&lt;P&gt;        APPEND XDOWNTABLE2.&lt;/P&gt;&lt;P&gt;        CLEAR XDOWNTABLE2.&lt;/P&gt;&lt;P&gt;        XDOWNTABLE2 = WSTR1+LEN3.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    AT LAST.&lt;/P&gt;&lt;P&gt;      APPEND XDOWNTABLE2.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM." new_line_format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Denis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 00:04:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-unicode/m-p/4441958#M1053790</guid>
      <dc:creator>denis_nakamoto</dc:creator>
      <dc:date>2008-09-05T00:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-unicode/m-p/4441959#M1053791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your error is coming from using type X variables I believe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try re-writing the code to use character variables type C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the CR/LF, define a field of length 2 type C then fill it with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Field =  CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then just concatenate this to the other fields (string or char types)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2008 01:34:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-unicode/m-p/4441959#M1053791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-05T01:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Unicode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-unicode/m-p/4441960#M1053792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I realized that is the problem. I checked my friend's problem and I saw that there isn't any problem,.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Denis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 14:21:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problems-with-unicode/m-p/4441960#M1053792</guid>
      <dc:creator>denis_nakamoto</dc:creator>
      <dc:date>2008-09-09T14:21:55Z</dc:date>
    </item>
  </channel>
</rss>

