<?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: UNICODE REPLACEMENT for the given logic in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546267#M1073733</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I coded like this:earlier i coded with out that +1(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class CL_ABAP_CHAR_UTILITIES definition load.&lt;/P&gt;&lt;P&gt;data: BEGIN OF crlf,&lt;/P&gt;&lt;P&gt;carriage_return(1) type c,&lt;/P&gt;&lt;P&gt;line_feed(1) type c,&lt;/P&gt;&lt;P&gt;end of crlf.&lt;/P&gt;&lt;P&gt;crlf-carriage_return =  CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf.&lt;/P&gt;&lt;P&gt;crlf-line_feed       =  CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf+1(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now still I am getting this error.&lt;/P&gt;&lt;P&gt;statement is not accessible. and pointing at crlf-carriage_return =......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Oct 2008 17:17:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-03T17:17:15Z</dc:date>
    <item>
      <title>UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546262#M1073728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BEGIN OF CRLF,&lt;/P&gt;&lt;P&gt;    CARRIAGE_RETURN(1) TYPE X VALUE '0D',&lt;/P&gt;&lt;P&gt;     LINE_FEED(1) TYPE X VALUE '0A',&lt;/P&gt;&lt;P&gt;END OF   CRLF,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not allowed in Unicode environments.&lt;/P&gt;&lt;P&gt;I get the below error:&lt;/P&gt;&lt;P&gt;CRLF must be a character type object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I replace this statement.&lt;/P&gt;&lt;P&gt;I checked some posts on sdn but didnot work out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 15:45:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546262#M1073728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T15:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546263#M1073729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using the class &lt;STRONG&gt;cl_abap_char_utlities=&amp;gt;CR_LF&lt;/STRONG&gt; you can overcome .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 15:48:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546263#M1073729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T15:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546264#M1073730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the exact replacement is this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: cr, lf.

cr = cl_abap_char_utilities=&amp;gt;cr_lf.

lf = cl_abap_char_utilities=&amp;gt;cr_lf+1(1).

break-point.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 15:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546264#M1073730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T15:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546265#M1073731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have both those variables in a single structure kind.&lt;/P&gt;&lt;P&gt;but you are splitting them into two different variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This CRLF is used in many areas in my entre function group.&lt;/P&gt;&lt;P&gt;So how can I change it all of them?&lt;/P&gt;&lt;P&gt;is it the only solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 17:00:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546265#M1073731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T17:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546266#M1073732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is the only solution, you have to use the cl_abap_char_utilities=&amp;gt;cr_lf, the way i mentioned, you have to use  like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;BEGIN OF CRLF,
CARRIAGE_RETURN(1) TYPE c,
LINE_FEED(1) TYPE c,
END OF CRLF

CRLF-CARRIAGE_RETURN = cl_abap_char_utilities=&amp;gt;cr_lf.
CRLF-LINE_FEED = cl_abap_char_utilities=&amp;gt;cr_lf+1(1).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 17:06:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546266#M1073732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T17:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546267#M1073733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I coded like this:earlier i coded with out that +1(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class CL_ABAP_CHAR_UTILITIES definition load.&lt;/P&gt;&lt;P&gt;data: BEGIN OF crlf,&lt;/P&gt;&lt;P&gt;carriage_return(1) type c,&lt;/P&gt;&lt;P&gt;line_feed(1) type c,&lt;/P&gt;&lt;P&gt;end of crlf.&lt;/P&gt;&lt;P&gt;crlf-carriage_return =  CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf.&lt;/P&gt;&lt;P&gt;crlf-line_feed       =  CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf+1(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now still I am getting this error.&lt;/P&gt;&lt;P&gt;statement is not accessible. and pointing at crlf-carriage_return =......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 17:17:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546267#M1073733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T17:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546268#M1073734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;this is one way of declaration and &lt;/P&gt;&lt;P&gt;c_tab  type c value CL_ABAP_CHAR_UTILITIES=&amp;gt;horizontal tab &lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;c_0d  type c value CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;bharani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 17:34:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546268#M1073734</guid>
      <dc:creator>BH2408</dc:creator>
      <dc:date>2008-10-03T17:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546269#M1073735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;since the code you placed should be under some event, but you placed directly in the beginning. so use initialization or start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;class CL_ABAP_CHAR_UTILITIES definition load.
data: BEGIN OF crlf,
carriage_return(1) type c,
line_feed(1) type c,
end of crlf.

start-of-selection.
crlf-carriage_return = CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf.
crlf-line_feed = CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf+1(1).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 17:36:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546269#M1073735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T17:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546270#M1073736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved it like this as I cannot have any events in my include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class CL_ABAP_CHAR_UTILITIES definition load.&lt;/P&gt;&lt;P&gt;data: BEGIN OF crlf,&lt;/P&gt;&lt;P&gt;        carriage_return(1) type c value CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf,&lt;/P&gt;&lt;P&gt;        line_feed(1) type c value CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf,&lt;/P&gt;&lt;P&gt;      end of crlf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will this work?&lt;/P&gt;&lt;P&gt;Now I dont get any errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 17:59:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546270#M1073736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T17:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546271#M1073737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the way you declared is ok. &lt;/P&gt;&lt;P&gt;But the line_feed value should be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;crlf-line_feed = CL_ABAP_CHAR_UTILITIES=&amp;gt;cr_lf+1(1).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 18:27:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546271#M1073737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T18:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546272#M1073738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks vijay.&lt;/P&gt;&lt;P&gt;But I  am having one more declaration as below &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          BEGIN OF html_td_end,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;            '&amp;lt;/td&amp;gt;', crlf(2) TYPE x VALUE '0D0A',&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          END OF html_td_end,&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the logic &lt;/P&gt;&lt;P&gt;  DATA: L_TAG_END_STACK(64) TYPE C OCCURS 10 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    INSERT  HTML_TD_END INTO L_TAG_END_STACK INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replaced declarations like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      begin of html_td_end,&lt;/P&gt;&lt;P&gt;        '&amp;lt;/td&amp;gt;',&lt;/P&gt;&lt;P&gt;        crlf(2)  TYPE C VALUE cl_abap_char_utilities=&amp;gt;cr_lf,&lt;/P&gt;&lt;P&gt;      end   of html_td_end,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now what changes do i have to do in logic of insert statement.&lt;/P&gt;&lt;P&gt;bcoz it gives me an error that HTML_TD_END &amp;amp; L_TAG_END_STACK are not mutualy convertible &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;kiranu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 19:25:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546272#M1073738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T19:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: UNICODE REPLACEMENT for the given logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546273#M1073739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can try like this,,,,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: L_TAG_END_STACK(64) TYPE C OCCURS 10 WITH HEADER LINE,
crlf(2) TYPE C VALUE cl_abap_char_utilities=&amp;gt;cr_lf.
data:  html_td_end(64).


concatenate 
'&amp;lt;/td&amp;gt;' crlf into HTML_TD_END .

INSERT HTML_TD_END INTO L_TAG_END_STACK INDEX 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2008 19:44:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-replacement-for-the-given-logic/m-p/4546273#M1073739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-03T19:44:53Z</dc:date>
    </item>
  </channel>
</rss>

