<?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 Unknown include structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-include-structure/m-p/4053479#M968977</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Can anyone thro w some light on "include structure  *$a&amp;gt;" ?&lt;/P&gt;&lt;P&gt;These are used in very old versions of SAP. &lt;/P&gt;&lt;P&gt;Answers would be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx and regrds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudipta Das&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jun 2008 09:13:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-30T09:13:23Z</dc:date>
    <item>
      <title>Unknown include structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-include-structure/m-p/4053479#M968977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Can anyone thro w some light on "include structure  *$a&amp;gt;" ?&lt;/P&gt;&lt;P&gt;These are used in very old versions of SAP. &lt;/P&gt;&lt;P&gt;Answers would be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx and regrds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudipta Das&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 09:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-include-structure/m-p/4053479#M968977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T09:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Unknown include structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-include-structure/m-p/4053480#M968978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;INCLUDE Structures:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include Structure is used to include the structure to a Custom Table. &lt;/P&gt;&lt;P&gt;The same Structure can be Included in any number of Custom Tables.&lt;/P&gt;&lt;P&gt;To Include it in the Custom Table Provide .INCLUDE as field name and Structure name as Field Type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND Structures:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append Structure is used to append to the Standard Tables.&lt;/P&gt;&lt;P&gt;The Same Append Structure cannot be appended in more then one Standard DB Table.&lt;/P&gt;&lt;P&gt;We need to create the Append Structure by opening the Table in Display mode and by clicking on the Append Structure button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this SAP help&lt;/P&gt;&lt;P&gt;on append structure and Include Structure&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eb54446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eb54446011d189700000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 09:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-include-structure/m-p/4053480#M968978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T09:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Unknown include structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-include-structure/m-p/4053481#M968979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I got what your asking right, &lt;/P&gt;&lt;P&gt;the include structure statement creates the same structure the object you are referring to in the variable you are declaring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: &lt;/P&gt;&lt;P&gt;Consider you have the following structure in your program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF struct1,
             f1 TYPE c,
             f2 TYPE i,
             f3 TYPE d,
          END OF struct1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now let's imagine you needed another one, comprised of the very same f1, f2 and f3 fields above, plus two other fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF struct2,
             f1 TYPE c,
             f2 TYPE i,
             f3 TYPE d,
             f4 TYPE c,
             f5 TYPE c,
          END OF struct2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same would be accomplished if you coded&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF struct2,
              include structure struct1. 
DATA:    f4 TYPE c,
             f5 type c,             
             END OF struct2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It applies to internal tables as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Avraham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Avraham Kahana on Jun 30, 2008 12:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2008 09:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unknown-include-structure/m-p/4053481#M968979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-30T09:27:04Z</dc:date>
    </item>
  </channel>
</rss>

