<?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: append Structure to a structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-structure-to-a-structure/m-p/3647886#M878567</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An append structure can only be assigned to one table or structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to append the same fields to several tables or structures, you can store these fields in an include structure - &lt;STRONG&gt;reusability is possible&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Apr 2008 09:15:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-09T09:15:28Z</dc:date>
    <item>
      <title>append Structure to a structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-structure-to-a-structure/m-p/3647883#M878564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have 3 different structures.&lt;/P&gt;&lt;P&gt;i have to append them into one structure and then make database call.&lt;/P&gt;&lt;P&gt;whats themost feasible way to do it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 07:31:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-structure-to-a-structure/m-p/3647883#M878564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T07:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: append Structure to a structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-structure-to-a-structure/m-p/3647884#M878565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; 1.Just use .INCLUDE -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;structure name to include antother structure in to the structue.&lt;/P&gt;&lt;P&gt; 2.Add two structures into one and make database call.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;If helpful reward with points(Don't forget).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 07:41:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-structure-to-a-structure/m-p/3647884#M878565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T07:41:37Z</dc:date>
    </item>
    <item>
      <title>Re: append Structure to a structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-structure-to-a-structure/m-p/3647885#M878566</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;Are the structure defined in the data dictionary or in program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is in program, do like :&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;If it is in dictionary,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the .Include or append structure feature for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 08:19:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-structure-to-a-structure/m-p/3647885#M878566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T08:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: append Structure to a structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-structure-to-a-structure/m-p/3647886#M878567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An append structure can only be assigned to one table or structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to append the same fields to several tables or structures, you can store these fields in an include structure - &lt;STRONG&gt;reusability is possible&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 09:15:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-structure-to-a-structure/m-p/3647886#M878567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T09:15:28Z</dc:date>
    </item>
  </channel>
</rss>

