<?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 Errors in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-errors/m-p/5613854#M1279093</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nikhat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not getting as what i have to do to rectify this error.&lt;/P&gt;&lt;P&gt;Can u explain in detail?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 May 2009 09:00:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-22T09:00:14Z</dc:date>
    <item>
      <title>Unicode Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-errors/m-p/5613851#M1279090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAPpers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting following Unicode errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. "CPREL" must be a character-type data object (data type C, N, D, T or STRING).&lt;/P&gt;&lt;P&gt;field string).&lt;/P&gt;&lt;P&gt; for  &lt;/P&gt;&lt;P&gt; tabix1 = strlen( cprel ).&lt;/P&gt;&lt;P&gt;Here cprel is a structure defined as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF cprel OCCURS 5000.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE pcl1.&lt;/P&gt;&lt;P&gt;DATA: sgart(2),&lt;/P&gt;&lt;P&gt;      pernr LIKE pernr-pernr,&lt;/P&gt;&lt;P&gt;END OF cprel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please rectify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 07:34:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-errors/m-p/5613851#M1279090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-22T07:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-errors/m-p/5613852#M1279091</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;You can find out the length of a single data object and not of the structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error is in : tabix1 = strlen(cprel).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In place of cprel, you will have to use a data object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Hope you found out the solution to your problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 07:50:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-errors/m-p/5613852#M1279091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-22T07:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-errors/m-p/5613853#M1279092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure that the datatypes of the structure fields are of the type C, N, D, T or String. The assignment to check the length of the fields in the structure will work if the fields are character-type. In this case the character type values are concatenated and length can be returned, but if we have a non-character type fields this will result in error .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 08:05:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-errors/m-p/5613853#M1279092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-22T08:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-errors/m-p/5613854#M1279093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nikhat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not getting as what i have to do to rectify this error.&lt;/P&gt;&lt;P&gt;Can u explain in detail?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2009 09:00:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-errors/m-p/5613854#M1279093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-22T09:00:14Z</dc:date>
    </item>
  </channel>
</rss>

