<?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: INCLUDE STRUCTURE spfli in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909317#M378670</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;          The difference between a table and structure is table will have a DATABSE table in the underlying database. At the DDIC level there is no difference between a structure and a table. You can use a table as strucutre.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you might have done this somany times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab type table of spfli.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here SPFLI is table. You are using it to create an internal table of this type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is nothing wrong in it INCLUDE STRUCTURE is the syntax used to copy the fields into your own local strucutre.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Feb 2007 08:28:21 GMT</pubDate>
    <dc:creator>seshatalpasai_madala</dc:creator>
    <dc:date>2007-02-08T08:28:21Z</dc:date>
    <item>
      <title>INCLUDE STRUCTURE spfli</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909314#M378667</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;&lt;/P&gt;&lt;P&gt;Just see the code below. SPFLI is the Transparent table for Flight schedule.&lt;/P&gt;&lt;P&gt;My question is :  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How a Table should be include as  STRUCTURE (INCLUDE STRUCTURE spfli).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How far it is correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:   BEGIN OF wa. &lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE spfli. &lt;/P&gt;&lt;P&gt;DATA:     count TYPE I. &lt;/P&gt;&lt;P&gt;DATA:   END OF wa. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Sri...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 08:13:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909314#M378667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T08:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: INCLUDE STRUCTURE spfli</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909315#M378668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;u cant include table as a structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 08:16:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909315#M378668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T08:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: INCLUDE STRUCTURE spfli</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909316#M378669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You declaration is correct , whats the problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will include all the fields from table SPLFI  and also the field COUNT in the internal table WA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want only workare , then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : WA1 LIKE SPFLI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 08:21:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909316#M378669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T08:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: INCLUDE STRUCTURE spfli</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909317#M378670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;          The difference between a table and structure is table will have a DATABSE table in the underlying database. At the DDIC level there is no difference between a structure and a table. You can use a table as strucutre.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you might have done this somany times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab type table of spfli.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here SPFLI is table. You are using it to create an internal table of this type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is nothing wrong in it INCLUDE STRUCTURE is the syntax used to copy the fields into your own local strucutre.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 08:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909317#M378670</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-02-08T08:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: INCLUDE STRUCTURE spfli</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909318#M378671</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;your declaration is correct. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use INCLUDE STRUCTURE spfli  when you define a structure wa (using DATA or TYPES) to include the components of the structured data object spfli in the structure wa .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sruthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 08:55:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/include-structure-spfli/m-p/1909318#M378671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T08:55:22Z</dc:date>
    </item>
  </channel>
</rss>

