<?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 Type not compatible? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470737#M555447</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;In my function module, I have table (PI_PPO) declared in the parameter. It is of table type Z_T_PPO. However, in the content of my function module, I declare another internal table I_PPO_INFO with table type Z_T_PPO as well. However, when I try to use MOVE: I_PPO_INFO to PI_PPO, it said that the type is not compatible. Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2007 02:23:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-21T02:23:59Z</dc:date>
    <item>
      <title>Type not compatible?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470737#M555447</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;In my function module, I have table (PI_PPO) declared in the parameter. It is of table type Z_T_PPO. However, in the content of my function module, I declare another internal table I_PPO_INFO with table type Z_T_PPO as well. However, when I try to use MOVE: I_PPO_INFO to PI_PPO, it said that the type is not compatible. Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 02:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470737#M555447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T02:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Type not compatible?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470738#M555448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you doing something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PI_PPO[] = I_PPO_INFO[].&lt;/CODE&gt;&lt;/PRE&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>Thu, 21 Jun 2007 02:26:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470738#M555448</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-21T02:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Type not compatible?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470739#M555449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can i see ur code ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 02:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470739#M555449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T02:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Type not compatible?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470740#M555450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apparently, I forgot that MOVE can't be used to assign between tables. Thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 02:30:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470740#M555450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T02:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Type not compatible?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470741#M555451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you can....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;move itab1[] to itab2[].&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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>Thu, 21 Jun 2007 02:44:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/type-not-compatible/m-p/2470741#M555451</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-06-21T02:44:55Z</dc:date>
    </item>
  </channel>
</rss>

