<?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: Data dictinary table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387387#M813359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;when u want to include group of fiels at the last of the table we need to go for append &lt;/P&gt;&lt;P&gt;when u want to include group of fiels at the middle  of the table we need to go for include&lt;/P&gt;&lt;P&gt;once fields appended u need to delete whole of the table if u want particular fields to be deleted&lt;/P&gt;&lt;P&gt;no need to delete whole of the table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Feb 2008 10:00:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-12T10:00:19Z</dc:date>
    <item>
      <title>Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387380#M813352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to include LIFNR field in MARA table?&lt;/P&gt;&lt;P&gt;What is the difference b/w append structure &amp;amp; include structure in a table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kavitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 09:50:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387380#M813352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T09:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387381#M813353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Append structures are like user exits provided by SAP to enhance the Standard tables. It behaves like include structure only, but this append structure is taken care in the SAP version upgrage process, automatically. The name of append structure starts with 'Z' namespace..SAP by default proposes the append structure name with the table name prefixed with 'Z'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is always recommended to modiy or append the Standard tables using append structure.&lt;/P&gt;&lt;P&gt;Yeah, its the standard provided for SAP standard table enhancement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and as you know, Include structures are used to include mulitple fields into a table, even during creation of a table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this answers your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 09:56:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387381#M813353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T09:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387382#M813354</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 read the append structures document below carefully to understand the difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Includes:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;With tables and structures it is possible to include the fields of another structure as well as to list the individual fields. Individual fields and includes can be combined as required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If an include is changed, all the tables and structures that contain this include are automatically adjusted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: Structure X is included in tables A and B. If another field is inserted into structure X, this field is also inserted in tables A and B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Includes can also be nested, i.e. structure A includes structure B, which in turn includes another structure C etc. The maximum nesting depth is limited to nine. A path of nested includes in a table or structure therefore can have at most length nine (excluding the table/structure itself).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only flat structures can be included. In a flat structure, each field either refers to a data element or is directly assigned a data type and length by direct type entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only structures can be included in a table. Both tables and structures can be included in a structure, but only one table may lie on a path of nested includes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: Table TAB1 includes structure STRUKT1, which in turn includes structure STRUKT2. Only table TAB1 lies on the path of nested includes. It is also possible to include TAB1 in a further structure STRUKT0, but no other table may be included in TAB1 because in this case two tables (TAB1 and TAB2) would lie on a path of nested includes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Append Sructures&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Append structures are used for enhancements which are not provided for in the standard (special developments, country versions and adding customer fields to SAP standard tables).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An append structure is assigned to exactly one table. There can however be several append structures to one table. If an append structure is created or changed, the table asssigned to it (appending object) is also activated again at activation and the changes also take effect there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An append structure permits the following enhancements to a table or structure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add new fields&lt;/P&gt;&lt;P&gt;Add foreign keys to fields of the appending object&lt;/P&gt;&lt;P&gt;Add search help attachments to fields of the appending object&lt;/P&gt;&lt;P&gt;Appending an append structure or inserting fields in an existing append structure does not lead to the conversion of the table. The fields of the append structure are appended to the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append structures are created by customers in the customer name range and are thus protected against overwriting in upgrades or release upgrades. After a release upgrade, the new versions of the standard tables are imported and fields contained in append structures are appended to the new standard tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:Append structures can only be created for transparent tables and structures. It is not possible to add fields with an append structure for transparent tables containing a long field. Furthermore, append structures may not be created for tables and structures of the central Basis of the R/3 System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please reward points if useful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;harikrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 09:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387382#M813354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T09:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387383#M813355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An append structure is a structure assigned to just one&lt;/P&gt;&lt;P&gt;table. When a table is activated, all append structures for&lt;/P&gt;&lt;P&gt;the table are found and appended to the table.&lt;/P&gt;&lt;P&gt;Append structures are used to add customer fields to SAP tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An include Structure is a structure which we include under&lt;/P&gt;&lt;P&gt;another structure which is already defined&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ref: &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="682190"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gunjna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 09:58:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387383#M813355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T09:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387384#M813356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For append structure&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eb61446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eb61446011d189700000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;for include structure.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eb54446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eb54446011d189700000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 09:58:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387384#M813356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T09:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387385#M813357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can add Z field to Std table at the end only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append structure is only for one table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clk on APPEND STRUCTURE  to add a new field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can create one z structure and then , u can include that in any no-of tables. (reusability)&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, 12 Feb 2008 09:58:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387385#M813357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T09:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387386#M813358</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: once u append a structure u cannot delete the structure.&lt;/P&gt;&lt;P&gt;u can append a structure only at the end of the feilds.&lt;/P&gt;&lt;P&gt;include structure: u can include a structure anywhere in a feilds,i.e in the middile or at last...&lt;/P&gt;&lt;P&gt;u can even delete a include structure directly where as append structure u must delete the entire table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 10:00:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387386#M813358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T10:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387387#M813359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;when u want to include group of fiels at the last of the table we need to go for append &lt;/P&gt;&lt;P&gt;when u want to include group of fiels at the middle  of the table we need to go for include&lt;/P&gt;&lt;P&gt;once fields appended u need to delete whole of the table if u want particular fields to be deleted&lt;/P&gt;&lt;P&gt;no need to delete whole of the table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 10:00:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387387#M813359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T10:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387388#M813360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ur best bet would be to add an append structure to MARA and add fields to the append structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append structure and Customizing includes both are tools provided by SAP to add fields to SAP standard tables. The only difference between them is that Append structures can be added to any SAP standard table whereas Customizing includes are predefined by SAP in standard tables or standard structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer SAP help for more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 10:01:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387388#M813360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T10:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387389#M813361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enhancement using Append structures&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append structures allow you to attach fields to a table without actually having to modify the table itself. You can use the fields in append structures in ABAP programs just as you would any other field in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on the append structure tab and opt to create new&lt;/P&gt;&lt;P&gt;structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append structures allow you to enhance tables by adding fields to them that are not part of the standard. With append structures; customers can add their own fields to any table or structure they want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append structures are created for use with a specific table. However, a table can have multiple append structures assigned to it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customers can add their own fields to any table or structure they want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The customer creates append structures in the customer namespace. The append structure is thus protected against overwriting during an upgrade. The fields in the append structure should also reside in the customer namespace, that is the field names should begin with ZZ or YY. This prevents name conflicts with fields inserted in the table by SAP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enh. using Customizing includes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some of the tables and structures delivered with the R/3 standard contain special include statements. These are often inserted in those standard tables that need to have customer-specific fields added to them. Such includes are Customizing includes. (CI).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A Customizing include is a structure that satisfies a special naming convention. (name begins with CI_).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A Customizing include is a structure that satisfies a special naming convention. The name of a Customizing include begins with &amp;#145;CI_&amp;#146; and the include is in the customer namespace .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If enhancements are already planned in the R/3 standard using customer-specific fields, such Customizing includes are included. in the corresponding standard table or standard structure. The Customizing include (that is the definition of the structure itself) is usually first created in the customer system and filled with fields by special Customizing transactions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customers can add their own fields to any table or structure they want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Customizing include field names must lie in the customer namespace just like field names in append structures. These names must all begin with either YY or ZZ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append structures v/s Customizing includes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In contrast to append structures, Customizing includes can be inserted into more than one table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an example the customizing include that we created (CI_DEMO) could be a part of multiple tables in the database whereas the append structure (ZDEMO_APPEND) can only be assigned to one table. (here MARA).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This provides for data consistency throughout the tables and structures affected whenever the include is altered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward i fusefull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 10:03:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387389#M813361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T10:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Data dictinary table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387390#M813362</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;You can find LIFNR field in MARA as MFRNR u can use this field there is realation btw these two u can check this by...&lt;/P&gt;&lt;P&gt;Go to se11&lt;DEL&gt;&amp;gt; mara&lt;/DEL&gt;&amp;gt; then find lifnr  u will get this field, double click on this u will get it.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Include structure can be used in any table and  can insert any where in table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append structure can de used in that table where it is created only that table can use , other thing if we want to delete the append structure hole table has to be deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;kavitha..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 10:10:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictinary-table/m-p/3387390#M813362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T10:10:15Z</dc:date>
    </item>
  </channel>
</rss>

