<?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 conversion wrt v_new_line in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-wrt-v-new-line/m-p/4682013#M1100929</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the message is pretty self explanatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_new_line (and v_eol) are defined as TYPE x and you can't use CONCATENATE with anything other than data type C, N. D, T, or String.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Oct 2008 14:30:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-10T14:30:57Z</dc:date>
    <item>
      <title>Unicode conversion wrt v_new_line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-wrt-v-new-line/m-p/4682012#M1100928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys/Dolls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a program that we are trying to convert to make it unicode compliant.&lt;/P&gt;&lt;P&gt;But I'm getting the following error:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"v_NEW_LINE" must be a character- like data object (data type C, N. D, T, or String).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically its falling over at the following line of code:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: v_new_line(255) TYPE x.&lt;/P&gt;&lt;P&gt;DATA: v_eol(2) TYPE x VALUE '0D0A'.&lt;/P&gt;&lt;P&gt;DATA:v_ees(15),&lt;/P&gt;&lt;P&gt;       v_ers(15).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF irec OCCURS 0,&lt;/P&gt;&lt;P&gt;      pernr LIKE p0002-pernr,    " Personnel Number (8)&lt;/P&gt;&lt;P&gt;      nachn LIKE p0002-nachn(25),    " Last Name (25)&lt;/P&gt;&lt;P&gt;      vorna LIKE p0002-vorna(20)," First Name (20)&lt;/P&gt;&lt;P&gt;      perid LIKE p0002-perid,    " NI Number (20)&lt;/P&gt;&lt;P&gt;      ees LIKE pc207-betrg,      " Employee Cont (15)&lt;/P&gt;&lt;P&gt;      ers LIKE pc207-betrg,      " Employer Cont (15)&lt;/P&gt;&lt;P&gt;END OF irec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR v_new_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE irec-pernr&lt;/P&gt;&lt;P&gt;              irec-nachn&lt;/P&gt;&lt;P&gt;              irec-vorna&lt;/P&gt;&lt;P&gt;              irec-perid&lt;/P&gt;&lt;P&gt;              v_ees&lt;/P&gt;&lt;P&gt;              v_ers&lt;/P&gt;&lt;P&gt;  INTO v_new_line SEPARATED BY ','.&lt;/P&gt;&lt;P&gt;  CONCATENATE v_new_line v_eol INTO v_new_line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 13:18:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-wrt-v-new-line/m-p/4682012#M1100928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T13:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode conversion wrt v_new_line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-wrt-v-new-line/m-p/4682013#M1100929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the message is pretty self explanatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_new_line (and v_eol) are defined as TYPE x and you can't use CONCATENATE with anything other than data type C, N. D, T, or String.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 14:30:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-wrt-v-new-line/m-p/4682013#M1100929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T14:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode conversion wrt v_new_line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-wrt-v-new-line/m-p/4682014#M1100930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually on further examination there is the 'IN BYTE MODE' addition to CONCATENATE that allows type x. But then the other values (i.e. irec-nachn) would need to be type x. You can't mix type x and type c in a CONCATENATE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Oct 2008 14:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-wrt-v-new-line/m-p/4682014#M1100930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-10T14:37:00Z</dc:date>
    </item>
  </channel>
</rss>

