<?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 problem: the data object cannot be converted to character type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278036#M151983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Until now, in the ASSIGN field TO &amp;lt;f&amp;gt; CASTING... statement, the system checked to ensure that field was at least as long as the type that was assigned to the field symbol, &amp;lt;f&amp;gt;. (Field symbols can either be typed at declaration or the type specified in an ASSIGN statement using CASTING TYPE). The syntax check is now more thorough. Now, you can only assign the field provided it is at least as long as the type assigned to the field symbol &amp;lt;f&amp;gt;. Otherwise, the system returns a syntax error. At runtime, the system only checks to see whether or not the lengths are compatible in the current system (as before).&lt;/P&gt;&lt;P&gt;If the field type or field symbol type is a deep structure, the system also checks that the offset and type of all the reference components match in the area of field that is covered by &amp;lt;f&amp;gt;. The syntax check is now more thorough. Now, the system checks that these components must be compatible in all systems, whether they have a one-byte, double-byte, or four-byte character length. At runtime, the system only checks to see whether or not the reference components are compatible in the current system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Unicode System, in the ASSIGN str TO &amp;lt;f&amp;gt; TYPE C/N and ASSIGN str TO &amp;lt;fs&amp;gt; CASTING TYPE C/N statements, the length of str may not always be a multiple of the character length, in which case the program aborts at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Apr 2006 06:55:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-04T06:55:39Z</dc:date>
    <item>
      <title>unicode problem: the data object cannot be converted to character type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278035#M151982</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;    Iam facing a problem with unicode compatible...&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;I have a table ZVENDOR with field packed...&lt;/P&gt;&lt;P&gt;and all the other fields are character types...&lt;/P&gt;&lt;P&gt;Here Iam getting the values to the Internal Table from the flat file and am updating those to the Ztable...&lt;/P&gt;&lt;P&gt;now when am going to write the field symbol..it is showing the error : " The data object cannot converted to&lt;/P&gt;&lt;P&gt;Character Type"...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Field-Symbols: &amp;lt;FS_VN&amp;gt; type ANY.&lt;/P&gt;&lt;P&gt;   LOOP AT IT_VEND.&lt;/P&gt;&lt;P&gt;     MOVE-CORRESPONDING IT_VEND TO ZVENDor.&lt;/P&gt;&lt;P&gt;     INSERT INTO  ZVENDor VALUES ZVENDor.&lt;/P&gt;&lt;P&gt;     ASSIGN ZVENDor TO &amp;lt;FS_VN&amp;gt; CASTING type ZVENDor. &lt;/P&gt;&lt;P&gt;     WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; &amp;lt;FS_VN&amp;gt;.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would be glad if any one find the solution...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;  raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 06:39:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278035#M151982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T06:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: unicode problem: the data object cannot be converted to character type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278036#M151983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Until now, in the ASSIGN field TO &amp;lt;f&amp;gt; CASTING... statement, the system checked to ensure that field was at least as long as the type that was assigned to the field symbol, &amp;lt;f&amp;gt;. (Field symbols can either be typed at declaration or the type specified in an ASSIGN statement using CASTING TYPE). The syntax check is now more thorough. Now, you can only assign the field provided it is at least as long as the type assigned to the field symbol &amp;lt;f&amp;gt;. Otherwise, the system returns a syntax error. At runtime, the system only checks to see whether or not the lengths are compatible in the current system (as before).&lt;/P&gt;&lt;P&gt;If the field type or field symbol type is a deep structure, the system also checks that the offset and type of all the reference components match in the area of field that is covered by &amp;lt;f&amp;gt;. The syntax check is now more thorough. Now, the system checks that these components must be compatible in all systems, whether they have a one-byte, double-byte, or four-byte character length. At runtime, the system only checks to see whether or not the reference components are compatible in the current system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Unicode System, in the ASSIGN str TO &amp;lt;f&amp;gt; TYPE C/N and ASSIGN str TO &amp;lt;fs&amp;gt; CASTING TYPE C/N statements, the length of str may not always be a multiple of the character length, in which case the program aborts at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 06:55:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278036#M151983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T06:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: unicode problem: the data object cannot be converted to character type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278037#M151984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Make sure that IT_VEND and ZVENDOR has the same structure. Unicode errors generally occurs when there is a structure mismatch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 07:33:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278037#M151984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T07:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: unicode problem: the data object cannot be converted to character type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278038#M151985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the problem is actually with your write statement. As you have 'WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; &amp;lt;FS_VN&amp;gt;.', it is trying to output that as a 'string' and because there is a packed field it gets upset. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are you tring to achive with the write? Can you expand the write to specify the actual fields you are interested in?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 07:35:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278038#M151985</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-04-04T07:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: unicode problem: the data object cannot be converted to character type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278039#M151986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   thanks for reply...&lt;/P&gt;&lt;P&gt;   I need the solution for that...&lt;/P&gt;&lt;P&gt;   Do we have any chances of to run that...&lt;/P&gt;&lt;P&gt;   without going to dump...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; regards&lt;/P&gt;&lt;P&gt;   raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 07:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278039#M151986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T07:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: unicode problem: the data object cannot be converted to character type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278040#M151987</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;  previously it was like this:&lt;/P&gt;&lt;P&gt;    wrtie:/ zvendor&lt;/P&gt;&lt;P&gt;  It is working good in 4.6c...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  now in 5.0 ECC it throws as a unicode error...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  So am trying to get the same functionality like what is before...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  hope you got it now..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;  raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 07:40:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278040#M151987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-04T07:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: unicode problem: the data object cannot be converted to character type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278041#M151988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry Raghu but you will have to change it. Unicode will not let you 'write zvendor' (or a field-symbol in it's image). You will have to expand it to something like:&lt;/P&gt;&lt;P&gt;write:/ zvendor-matnr,zvendor-ebeln....etc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2006 07:46:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-the-data-object-cannot-be-converted-to-character-type/m-p/1278041#M151988</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-04-04T07:46:38Z</dc:date>
    </item>
  </channel>
</rss>

