<?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: activation error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/activation-error/m-p/1519406#M238688</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;your code,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;READ TEXTPOOL R-NAME INTO U LANGUAGE SY-LANGU.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;READ TEXTPOOL R-NAME INTO U LANGUAGE R-LANGUAGE.&lt;/P&gt;&lt;P&gt;ENDIF.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;here it will fail because internal table U is not realted to Structure TEXTPOOL. so in your code change it to like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: U LIKE TEXTPOOL OCCURS 0 WITH HEADER .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Sep 2006 15:54:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-06T15:54:52Z</dc:date>
    <item>
      <title>activation error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/activation-error/m-p/1519404#M238686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have this code in my program, and when i tried to activate show me this error...&lt;/P&gt;&lt;P&gt;"The line type of "U" must be compatible with one of the types "TEXTPOOL".		&lt;/P&gt;&lt;P&gt;		&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF R   OCCURS 56,     "prog name and language&lt;/P&gt;&lt;P&gt;      NAME(40)     TYPE C,&lt;/P&gt;&lt;P&gt;      LANGUAGE(1)  TYPE C,&lt;/P&gt;&lt;P&gt;   END OF R.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF U OCCURS 100,           "Text elements&lt;/P&gt;&lt;P&gt;      txt(180)               TYPE C,   " rel 4   was 132&lt;/P&gt;&lt;P&gt;      END OF U.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TEXTPOOL R-NAME INTO U LANGUAGE SY-LANGU.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;    READ TEXTPOOL R-NAME INTO U LANGUAGE R-LANGUAGE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  DESCRIBE TABLE U LINES I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea???&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;Andrea.-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 15:44:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/activation-error/m-p/1519404#M238686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-06T15:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: activation error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/activation-error/m-p/1519405#M238687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Define U like TEXTPOOL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: U LIKE TEXTPOOL OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 15:46:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/activation-error/m-p/1519405#M238687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-06T15:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: activation error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/activation-error/m-p/1519406#M238688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;your code,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;READ TEXTPOOL R-NAME INTO U LANGUAGE SY-LANGU.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;READ TEXTPOOL R-NAME INTO U LANGUAGE R-LANGUAGE.&lt;/P&gt;&lt;P&gt;ENDIF.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;here it will fail because internal table U is not realted to Structure TEXTPOOL. so in your code change it to like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: U LIKE TEXTPOOL OCCURS 0 WITH HEADER .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2006 15:54:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/activation-error/m-p/1519406#M238688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-06T15:54:52Z</dc:date>
    </item>
  </channel>
</rss>

