<?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: itab declaration include structure error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601947#M867562</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;please do it : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : begin of it_address_info_type occurs 0.&lt;/P&gt;&lt;P&gt;include structure zadrc.&lt;/P&gt;&lt;P&gt;data end of it_address_info_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will not come any error .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mr. Subash Sahoo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if error pls mail me on :  lps1235@gmail.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Mar 2008 15:26:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-24T15:26:17Z</dc:date>
    <item>
      <title>itab declaration include structure error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601944#M867559</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;types : begin of it_address_info_type,&lt;/P&gt;&lt;P&gt;       include structure zadrc,&lt;/P&gt;&lt;P&gt; end of it_address_info_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here zadrc is a structure.&lt;/P&gt;&lt;P&gt;why its giving error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shall i need to change this structure to table?&lt;/P&gt;&lt;P&gt;if yes how i will do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Mar 2008 06:29:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601944#M867559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-23T06:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: itab declaration include structure error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601945#M867560</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; Please make it as,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of type.&lt;/P&gt;&lt;P&gt;include type zadrc.&lt;/P&gt;&lt;P&gt;types : end of type.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: iref TYPE REF TO ZADRC.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;TYPES: iref type table of mara.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;TYPES: iref type standard table of mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of it_address_info_type.&lt;/P&gt;&lt;P&gt;include structure zadrc.&lt;/P&gt;&lt;P&gt;data : end of it_address_info_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use types it is used to create user defined data type.&lt;/P&gt;&lt;P&gt;But you are refrerring a data object as zadrc. Thats why it shows error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sankar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sankar on Mar 23, 2008 8:31 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Mar 2008 06:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601945#M867560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-23T06:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: itab declaration include structure error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601946#M867561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;problem is &lt;/P&gt;&lt;P&gt;ur syntax is &lt;/P&gt;&lt;P&gt;types : begin of it_address_info_type,&lt;/P&gt;&lt;P&gt;include structure zadrc,&lt;/P&gt;&lt;P&gt;end of it_address_info_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it shud be &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;types : begin of it_address_info_type.
include structure zadrc.
types : end of it_address_info_type.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rewards point if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 05:56:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601946#M867561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T05:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: itab declaration include structure error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601947#M867562</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;please do it : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : begin of it_address_info_type occurs 0.&lt;/P&gt;&lt;P&gt;include structure zadrc.&lt;/P&gt;&lt;P&gt;data end of it_address_info_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will not come any error .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mr. Subash Sahoo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if error pls mail me on :  lps1235@gmail.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 15:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601947#M867562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T15:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: itab declaration include structure error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601948#M867563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhoshini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no need to change the structure . But just place a period (.) at the end of the first statement and end with types:end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX: Types:Begin of itab.&lt;/P&gt;&lt;P&gt;      Include structure Mara.&lt;/P&gt;&lt;P&gt;      Types:End of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;AMK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD POINTS IF USEFUL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 23:00:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-declaration-include-structure-error/m-p/3601948#M867563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T23:00:06Z</dc:date>
    </item>
  </channel>
</rss>

