<?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: Structure incompatible in unicode environment in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-incompatible-in-unicode-environment/m-p/3087612#M732285</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;In the Unicode environment both source and target structures should be same. If in your case it is not equal then you need to move field by field from source to target structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Dec 2007 03:53:56 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2007-12-04T03:53:56Z</dc:date>
    <item>
      <title>Structure incompatible in unicode environment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-incompatible-in-unicode-environment/m-p/3087611#M732284</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;In Non unicode  ls_p0008 = l_ps  this assignment is working fine, but in unicode environment   i cannot make the assignment early and it says structure incompatible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i have written a code as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MOVE-CORRESPONDING l_ps TO ls_p0008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here l_ps is like PRELP .&lt;/P&gt;&lt;P&gt;and ls_p0008 like p0008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These PRELP having a different parameter than p008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when making assignment like early the values are improperly assigned, and some part looks like #####  ############. what does it mean?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help. Urgent!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 00:27:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-incompatible-in-unicode-environment/m-p/3087611#M732284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T00:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Structure incompatible in unicode environment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-incompatible-in-unicode-environment/m-p/3087612#M732285</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;In the Unicode environment both source and target structures should be same. If in your case it is not equal then you need to move field by field from source to target structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 03:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-incompatible-in-unicode-environment/m-p/3087612#M732285</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-12-04T03:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Structure incompatible in unicode environment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-incompatible-in-unicode-environment/m-p/3087613#M732286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move corresponding will move the contents of the fields with the same name from one structure to another.  So long as those fields have the same definition, it should work fine.  If there are fields with different names, or different types, then you have to move their values individual.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ls_p0008 = l_ps simply slaps the contents of l_ps over ls_p0008, without regard for the types of the component fields.  In non-unicode this is permitted, but still bad.  Numeric fields particularly will not be readable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 08:18:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-incompatible-in-unicode-environment/m-p/3087613#M732286</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2007-12-04T08:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Structure incompatible in unicode environment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-incompatible-in-unicode-environment/m-p/3087614#M732287</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;   If its not working then loop on ls_ps and pass one by one field to field of ls_pa0008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at ls_ps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ls_pa0008-field = ls_ps-field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append ls_pa0008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 08:21:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-incompatible-in-unicode-environment/m-p/3087614#M732287</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-12-04T08:21:55Z</dc:date>
    </item>
  </channel>
</rss>

