<?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: Character string mapped to structure? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999818#M406969</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've got a solution to your problem; As bluemoon has suggested, you must use field-symbols. You must also cast it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa_mara LIKE mara,&lt;/P&gt;&lt;P&gt;          DATA(4000) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN DATA TO &amp;lt;fs&amp;gt; CASTING.&lt;/P&gt;&lt;P&gt;wa_mara = &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This will solve your problem &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;~arman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Mar 2007 01:32:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-13T01:32:31Z</dc:date>
    <item>
      <title>Character string mapped to structure?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999815#M406966</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;I hav a work structure WA_MARA LIKE MARA, and a 4000-character variable DATA(4000) TYPE C. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, the data from DATA needs to be copied into the fields of WA_MARA, but a statemnt like WA_MARA = DATA gives a Unicode error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ne ideas how to solve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 13:11:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999815#M406966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T13:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Character string mapped to structure?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999816#M406967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not possible in unicode systems. Maybe, you can solve the problem using Field-Symbols...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful...&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 20:16:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999816#M406967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T20:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Character string mapped to structure?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999817#M406968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shailesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Try using move statement and if this still persists then go to attributes and uncheck "unicode checks active".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  This would solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  BR&lt;/P&gt;&lt;P&gt;  Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 00:44:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999817#M406968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T00:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Character string mapped to structure?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999818#M406969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've got a solution to your problem; As bluemoon has suggested, you must use field-symbols. You must also cast it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa_mara LIKE mara,&lt;/P&gt;&lt;P&gt;          DATA(4000) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN DATA TO &amp;lt;fs&amp;gt; CASTING.&lt;/P&gt;&lt;P&gt;wa_mara = &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This will solve your problem &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;~arman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2007 01:32:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999818#M406969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-13T01:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Character string mapped to structure?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999819#M406970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But be careful here,  it could happen that there will be a problem with the type P fields here.&lt;/P&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>Tue, 13 Mar 2007 01:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/character-string-mapped-to-structure/m-p/1999819#M406970</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-13T01:35:54Z</dc:date>
    </item>
  </channel>
</rss>

