<?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 unicode error in MODIFY dtab in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-in-modify-dtab/m-p/3237857#M772666</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;I am trying to correct a unicode error.&lt;/P&gt;&lt;P&gt;this is the error, when i try to activate the code.&lt;/P&gt;&lt;P&gt;"The work area (or internal table) "w_inttab" is not flat, or&lt;/P&gt;&lt;P&gt;contains reference or internal tables as components . components.&lt;/P&gt;&lt;P&gt;components. components. components."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the error is due to this code line:&lt;/P&gt;&lt;P&gt;" MODIFY zdtab FROM TABLE w_inttab."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the structure of W_ZCONSMPKG is"&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF w_inttab OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE zdtab.&lt;/P&gt;&lt;P&gt;DATA: msgs LIKE message_body OCCURS 0,&lt;/P&gt;&lt;P&gt;      END   OF w_inttab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone please tell me how to rectify this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goldie.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jan 2008 16:16:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-07T16:16:06Z</dc:date>
    <item>
      <title>unicode error in MODIFY dtab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-in-modify-dtab/m-p/3237857#M772666</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;I am trying to correct a unicode error.&lt;/P&gt;&lt;P&gt;this is the error, when i try to activate the code.&lt;/P&gt;&lt;P&gt;"The work area (or internal table) "w_inttab" is not flat, or&lt;/P&gt;&lt;P&gt;contains reference or internal tables as components . components.&lt;/P&gt;&lt;P&gt;components. components. components."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the error is due to this code line:&lt;/P&gt;&lt;P&gt;" MODIFY zdtab FROM TABLE w_inttab."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the structure of W_ZCONSMPKG is"&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF w_inttab OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE zdtab.&lt;/P&gt;&lt;P&gt;DATA: msgs LIKE message_body OCCURS 0,&lt;/P&gt;&lt;P&gt;      END   OF w_inttab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone please tell me how to rectify this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goldie.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 16:16:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-in-modify-dtab/m-p/3237857#M772666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T16:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error in MODIFY dtab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-in-modify-dtab/m-p/3237858#M772667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to move the final details into a internal table that has same structure as zdtab and then use Modify. &lt;/P&gt;&lt;P&gt;Currently your internal table is not a flat structure as it has another message component. This is causing the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 16:21:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-in-modify-dtab/m-p/3237858#M772667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T16:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error in MODIFY dtab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-in-modify-dtab/m-p/3237859#M772668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;it happens evry time you use a nasted structure and  a field is also a table or data reference&lt;/P&gt;&lt;P&gt;try this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;data: ls_zdtab type zdtab.&lt;/P&gt;&lt;P&gt;&amp;gt;loop at w_inttab.&lt;/P&gt;&lt;P&gt;&amp;gt;move-corresponding w_inttab to ls_zdtab.&lt;/P&gt;&lt;P&gt;&amp;gt;modify zdtab from ls_zdtab.&lt;/P&gt;&lt;P&gt;&amp;gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 16:28:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-in-modify-dtab/m-p/3237859#M772668</guid>
      <dc:creator>mnicolai_77</dc:creator>
      <dc:date>2008-01-07T16:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error in MODIFY dtab</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-in-modify-dtab/m-p/3237860#M772669</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;Declare a work area for w_inttab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
types : begin of t_zdtab.
   include structure zdtab.
types : end of t_zdtab.

data : w_inttab type t_zdtab.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 16:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-in-modify-dtab/m-p/3237860#M772669</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-01-07T16:29:11Z</dc:date>
    </item>
  </channel>
</rss>

