<?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: define internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737921#M1111635</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: itab type table of ty_accfile.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Nov 2008 11:36:49 GMT</pubDate>
    <dc:creator>Sandeep_Panghal</dc:creator>
    <dc:date>2008-11-17T11:36:49Z</dc:date>
    <item>
      <title>define internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737919#M1111633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi everybody&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to define an internal table which will include 4 different structures?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_accfile.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE t,&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bbkpf.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bbseg.&lt;/P&gt;&lt;P&gt;TYPES: END OF ty_accfile.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 11:32:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737919#M1111633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T11:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: define internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737920#M1111634</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;Try like this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

types : begin of typ_input,
            wa_string type string,
           end of typ_input.
           
types : begin of typ_input1,
            wa_string1 type string,
           end of typ_input1.    
           
data : gt_input type typ_input,
       gt_input1 type typ_input1.         
             
DATA: BEGIN OF gt_output OCCURS 0.
             include structure gt_input.
             INCLUDE STRUCTURE gt_input1.
DATA: end of gt_output.

DATA : itab type table of  gt_output.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will helps&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 11:35:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737920#M1111634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T11:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: define internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737921#M1111635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: itab type table of ty_accfile.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 11:36:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737921#M1111635</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2008-11-17T11:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: define internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737922#M1111636</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;When you are including 4different structures...you should aware about the fields of those structures...if any common field exists within those structures...then system will not allow you to that....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arunima&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 11:40:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737922#M1111636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T11:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: define internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737923#M1111637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  it_itab type standard table&lt;/P&gt;&lt;P&gt;  of ty_accfile&lt;/P&gt;&lt;P&gt;  initial size 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 11:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737923#M1111637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T11:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: define internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737924#M1111638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arunima&lt;/P&gt;&lt;P&gt;In fact Im having the internal table which includes 4 structures, where there are common fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how I should handle it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 11:43:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/define-internal-table/m-p/4737924#M1111638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T11:43:22Z</dc:date>
    </item>
  </channel>
</rss>

