<?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: Differnce Between Append Structure and Include Structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496304#M563780</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;INCLUDE STRUCTURE:&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;This statement must be used only within a structure definition with the additions BEGIN OF and END OF in the statements TYPES, DATA, CLASS-DATA, and STATICS. It copies all the components of the structured type struc_type or the structure struc at the given position into the current structure definition. The components are created at the same level as the INCLUDE statement. The INCLUDE statement does not create any substructure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;struc_type can be a local (within program), structured type or a structure from the ABAP Dictionary. struc must be a structure of the same program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Through the specification of a name name after the AS addition, either all the components of the bound structure struc_type or struc are addressed together through the name name or individual components can be addressed using the structure component selector (-). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the RENAMING WITH SUFFIX addition, each indivdual component is renamed by adding on the suffix suffix. Here, a structure can be copied several times. suffix must be specified directly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Outside of ABAP objects, flat structures, database tables, or views of the ABAP Dictionary can also be specified for struc with the STRUCTURE addition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In constant structures declared with CONSTANTS, no components can be included using INCLUDE because no start values can be assigned to these. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;In this example, the structure week is defined by repeated copying of the components in the structured type t_day. The components for week are all on one level and can be addressed as follows: week-work_mon, week-free_mon, week-work_tue, and so on. Alternatively, however, the following address method is also possible: week-monday-work, week-monday-free, week-tuesday-work, and so on. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_day, &lt;/P&gt;&lt;P&gt;         work(8)  TYPE c, &lt;/P&gt;&lt;P&gt;         free(16) TYPE c, &lt;/P&gt;&lt;P&gt;       END OF t_day. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BEGIN OF week. &lt;/P&gt;&lt;P&gt;  INCLUDE TYPE t_day AS monday    RENAMING WITH SUFFIX _mon. &lt;/P&gt;&lt;P&gt;  INCLUDE TYPE t_day AS tuesday   RENAMING WITH SUFFIX _tue. &lt;/P&gt;&lt;P&gt;  INCLUDE TYPE t_day AS wednesday RENAMING WITH SUFFIX _wed. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;DATA END OF week. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;APPEND STRUCTURE&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure in the ABAP Dictionary that is appended to another structure or a database table so as to add further components. Standard structures and database tables delivered by SAP can be enhanced by means of append structures in customer systems. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;Reward point if helpful&lt;/P&gt;&lt;P&gt;Debjani Lahiri&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jul 2007 07:20:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-19T07:20:03Z</dc:date>
    <item>
      <title>Differnce Between Append Structure and Include Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496297#M563773</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;can any one say&lt;/P&gt;&lt;P&gt;Differnce Between Append Structure and Include Structure&lt;/P&gt;&lt;P&gt;and how to include structure in Database table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 13:05:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496297#M563773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T13:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Differnce Between Append Structure and Include Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496298#M563774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Append Structure-&amp;gt;Append structures are used for enhancements that are not included in the standard. This includes special developments, country versions and adding customer fields to any tables or structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An append structure is a structure that is assigned to exactly one table or structure. There can be more than one append structure for a table or structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following enhancements can be made to a table or structure TAB with an append structure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· Insert new fields in TAB,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· Define foreign keys for fields of TAB that already exist,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· Attach search helps to fields of TAB that already exist,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These enhancements are part of the append structure, i.e. they must always be changed and transported with the append structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include Structure -&amp;gt;In addition to listing the individual fields, we can also include the fields of another structure in tables and structures. Individual fields and includes can be mixed as required.&lt;/P&gt;&lt;P&gt;When an include is changed, all the tables and structures that include it are automatically adjusted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Includes can also be nested, that is structure A includes structure B which in turn includes another structure C, etc. The maximum nesting depth is limited to nine. The maximum length of a path of nested includes in a table or structure is therefore nine (the table/structure itself not included).&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;Difference Between them&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.ittoolbox.com/groups/technical-functional/sap-r3-bw/append-structure-vs-include-structure-71441#" target="test_blank"&gt;http://sap.ittoolbox.com/groups/technical-functional/sap-r3-bw/append-structure-vs-include-structure-71441#&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Reward points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 13:07:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496298#M563774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T13:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Differnce Between Append Structure and Include Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496299#M563775</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;using append structure u can custyomize ur structure by adding more fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but with include structure u cannot do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab,&lt;/P&gt;&lt;P&gt;        include structure..,&lt;/P&gt;&lt;P&gt;        end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ravish&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;plz dont forget to reward points if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 13:09:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496299#M563775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T13:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Differnce Between Append Structure and Include Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496300#M563776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;        Append structure will play its role when we need to insert some fields in to the database table.Check it out by creating a table in se11 and also create another structure for that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click the append structure and give the structure name into the table and u can see the structure in the Database table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE structure will be helpful when we creating an internal table in the run time..At that time we can include a structure of a table in it instead of giving the all fields in the creation of the internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD If useful!!!!!!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 13:14:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496300#M563776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T13:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Differnce Between Append Structure and Include Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496301#M563777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Append structures are used for enhancements that are not included in the standard. An append structure is a structure that is assigned to exactly one table or structure. There can be more than one append structure for a table or structure.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/cf/21eb61446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/cf/21eb61446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Includes are used to group fields, an include structure can be assigned to many tables. If you add a fields to an include structure, all tables/structures, which contain that include structure, will be updated too.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/cf/21ea6a446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/cf/21ea6a446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 08:17:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496301#M563777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T08:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Differnce Between Append Structure and Include Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496302#M563778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In case of a Include structure, the reference originates in the table itself, in the form of a statement include&amp;#133;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of an append structure, the table itself remains unchanged and the reference originates in the append structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 08:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496302#M563778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T08:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: Differnce Between Append Structure and Include Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496303#M563779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simply&lt;/P&gt;&lt;P&gt;Append structures are for standard ddic table when you are working to make some enhancements where as include structure would be used in internal tables when you need a internal table which has fields of a ddic structure you can use it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 08:49:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496303#M563779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T08:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Differnce Between Append Structure and Include Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496304#M563780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;INCLUDE STRUCTURE:&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;This statement must be used only within a structure definition with the additions BEGIN OF and END OF in the statements TYPES, DATA, CLASS-DATA, and STATICS. It copies all the components of the structured type struc_type or the structure struc at the given position into the current structure definition. The components are created at the same level as the INCLUDE statement. The INCLUDE statement does not create any substructure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;struc_type can be a local (within program), structured type or a structure from the ABAP Dictionary. struc must be a structure of the same program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Through the specification of a name name after the AS addition, either all the components of the bound structure struc_type or struc are addressed together through the name name or individual components can be addressed using the structure component selector (-). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the RENAMING WITH SUFFIX addition, each indivdual component is renamed by adding on the suffix suffix. Here, a structure can be copied several times. suffix must be specified directly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Outside of ABAP objects, flat structures, database tables, or views of the ABAP Dictionary can also be specified for struc with the STRUCTURE addition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In constant structures declared with CONSTANTS, no components can be included using INCLUDE because no start values can be assigned to these. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;In this example, the structure week is defined by repeated copying of the components in the structured type t_day. The components for week are all on one level and can be addressed as follows: week-work_mon, week-free_mon, week-work_tue, and so on. Alternatively, however, the following address method is also possible: week-monday-work, week-monday-free, week-tuesday-work, and so on. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_day, &lt;/P&gt;&lt;P&gt;         work(8)  TYPE c, &lt;/P&gt;&lt;P&gt;         free(16) TYPE c, &lt;/P&gt;&lt;P&gt;       END OF t_day. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BEGIN OF week. &lt;/P&gt;&lt;P&gt;  INCLUDE TYPE t_day AS monday    RENAMING WITH SUFFIX _mon. &lt;/P&gt;&lt;P&gt;  INCLUDE TYPE t_day AS tuesday   RENAMING WITH SUFFIX _tue. &lt;/P&gt;&lt;P&gt;  INCLUDE TYPE t_day AS wednesday RENAMING WITH SUFFIX _wed. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;DATA END OF week. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;APPEND STRUCTURE&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure in the ABAP Dictionary that is appended to another structure or a database table so as to add further components. Standard structures and database tables delivered by SAP can be enhanced by means of append structures in customer systems. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;Reward point if helpful&lt;/P&gt;&lt;P&gt;Debjani Lahiri&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 07:20:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differnce-between-append-structure-and-include-structure/m-p/2496304#M563780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T07:20:03Z</dc:date>
    </item>
  </channel>
</rss>

