<?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: ABAP - UNICODE ERRORS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-unicode-errors/m-p/1839367#M356878</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yogesh,&lt;/P&gt;&lt;P&gt; Out of the two alternatives Rich has suggested, i think it is better to&lt;/P&gt;&lt;P&gt;change the values only.&lt;/P&gt;&lt;P&gt;NUMB LIKE TVARVC-TYPE VALUE '0000', &lt;/P&gt;&lt;P&gt;CONSTANTS : C_CMDRET(3) TYPE C VALUE 'ZRES', &lt;/P&gt;&lt;P&gt;F5 TYPE VBTYP VALUE 'F'&lt;/P&gt;&lt;P&gt;F8 TYPE VBTYP VALUE 'F',&lt;/P&gt;&lt;P&gt;CASH_SALE VALUE 'B', &lt;/P&gt;&lt;P&gt;MKT_REPLEN_INV VALUE 'Z',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because, the 5 if F5 , 8 in F8 V in BV and 2 in Z2 are not used even though it was declared in the earlier versions of the programs.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Jan 2007 14:57:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-31T14:57:50Z</dc:date>
    <item>
      <title>ABAP - UNICODE ERRORS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-unicode-errors/m-p/1839365#M356876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have non-unicode system and we will be in the process of changing existing ABAP's to become unicode compliant. I am getting errors for following sentences. &lt;/P&gt;&lt;P&gt;Can anyone let me know what could be the possible alternatives for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NUMB LIKE TVARVC-TYPE VALUE '0000',         &lt;/P&gt;&lt;P&gt;CONSTANTS : C_CMDRET(3) TYPE C VALUE 'ZRES', &lt;/P&gt;&lt;P&gt;F5 TYPE VBTYP VALUE 'F5'&lt;/P&gt;&lt;P&gt;F8 TYPE VBTYP VALUE 'F8',&lt;/P&gt;&lt;P&gt;CASH_SALE VALUE 'BV',    " this equals = 'B' !!!!!!!!!!&lt;/P&gt;&lt;P&gt;MKT_REPLEN_INV VALUE 'Z2'," this equals 'Z' !!!!!!!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Yogesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:37:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-unicode-errors/m-p/1839365#M356876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP - UNICODE ERRORS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-unicode-errors/m-p/1839366#M356877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The values are longer than the field lengths.  Either specify the field lengths correctly, or adjust the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


constants: numb(4) type c VALUE '0000'.
constants : c_cmdret(4) TYPE c VALUE 'ZRES',
            f5(2) type c VALUE 'F5',
            f8(2) type c VALUE 'F8',
cash_sale(2) type c VALUE 'BV', " this equals = 'B' !!!!!!!!!!
mkt_replen_inv(2) type c VALUE 'Z2'." this equals 'Z' !!!!!!!!!!!!

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:44:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-unicode-errors/m-p/1839366#M356877</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-01-31T14:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP - UNICODE ERRORS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-unicode-errors/m-p/1839367#M356878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yogesh,&lt;/P&gt;&lt;P&gt; Out of the two alternatives Rich has suggested, i think it is better to&lt;/P&gt;&lt;P&gt;change the values only.&lt;/P&gt;&lt;P&gt;NUMB LIKE TVARVC-TYPE VALUE '0000', &lt;/P&gt;&lt;P&gt;CONSTANTS : C_CMDRET(3) TYPE C VALUE 'ZRES', &lt;/P&gt;&lt;P&gt;F5 TYPE VBTYP VALUE 'F'&lt;/P&gt;&lt;P&gt;F8 TYPE VBTYP VALUE 'F',&lt;/P&gt;&lt;P&gt;CASH_SALE VALUE 'B', &lt;/P&gt;&lt;P&gt;MKT_REPLEN_INV VALUE 'Z',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because, the 5 if F5 , 8 in F8 V in BV and 2 in Z2 are not used even though it was declared in the earlier versions of the programs.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 14:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-unicode-errors/m-p/1839367#M356878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T14:57:50Z</dc:date>
    </item>
  </channel>
</rss>

