<?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: creating Types and Internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713016#M629021</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  TYPES BEGIN OF new_itab.
          INCLUDE STRUCTURE itab.
  TYPES:  initiator_per_no        TYPE ptreq_actor-objid,
* declare your other fields here which are different 
  END OF new_itab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Aug 2007 15:35:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-16T15:35:32Z</dc:date>
    <item>
      <title>creating Types and Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713015#M629020</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;I created &lt;/P&gt;&lt;P&gt;Types: begin of itab,&lt;/P&gt;&lt;P&gt;           field 1 ...&lt;/P&gt;&lt;P&gt;              -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;              -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;            Field 30,&lt;/P&gt;&lt;P&gt;        End of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: lt_itab type table of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create a second type itab1  with all the itab fields and also new fields  field31 and field32.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don&amp;#146;t want to declare all the 30 fields again for the second one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one tell me how to create this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 15:31:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713015#M629020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T15:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: creating Types and Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713016#M629021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  TYPES BEGIN OF new_itab.
          INCLUDE STRUCTURE itab.
  TYPES:  initiator_per_no        TYPE ptreq_actor-objid,
* declare your other fields here which are different 
  END OF new_itab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 15:35:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713016#M629021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T15:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: creating Types and Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713017#M629022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, if u have already created a internat table with the fields and you want to use those fields in creating of another table, follow the below format to do so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: begin of ty_itab2.&lt;/P&gt;&lt;P&gt;         include structure itab1.&lt;/P&gt;&lt;P&gt;         &amp;lt;fields&amp;gt;.&lt;/P&gt;&lt;P&gt;Data: end of ty_itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will work, reward points if help ful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 15:38:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713017#M629022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T15:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: creating Types and Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713018#M629023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can INCLUDE TYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

Types: begin of itab,
       field1 type string,
       field2 type string,
*      More Fields in here.
       Field30 type string,
       End of itab.

Data: lt_itab type table of itab.

TYPES BEGIN OF new_itab.
       INCLUDE type itab.
TYPES: field31 type string,
       field32 type string,
END OF new_itab.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 15:38:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713018#M629023</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-08-16T15:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: creating Types and Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713019#M629024</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;data: itab1 type standard table of itab.&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>Thu, 16 Aug 2007 15:39:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713019#M629024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T15:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: creating Types and Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713020#M629025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Thanks for all my problem solve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I gave the points all usefull answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2007 16:09:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-types-and-internal-table/m-p/2713020#M629025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-16T16:09:16Z</dc:date>
    </item>
  </channel>
</rss>

