<?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 Declaring a table like another table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412832#M198752</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;I am trying to define another table, say itab, that has the same structure as, say, EDISEGSTRU so that I can use it in the function call: SEGMENTDEFINITION_READ as a parameter for Tables. May I know how can I declare the itab? Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anyi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Jul 2006 20:11:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-21T20:11:37Z</dc:date>
    <item>
      <title>Declaring a table like another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412832#M198752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;I am trying to define another table, say itab, that has the same structure as, say, EDISEGSTRU so that I can use it in the function call: SEGMENTDEFINITION_READ as a parameter for Tables. May I know how can I declare the itab? Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anyi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 20:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412832#M198752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T20:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Declaring a table like another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412833#M198753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In order to reference a structure in the interface of a function module, the structure must be created in the data dictionary.  Check that your structure exists via SE11,  if so, then you can use it in the tables parameter section of your function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
&amp;lt;b&amp;gt;
Parameter Name       Type Spec   Reference Type&amp;lt;/b&amp;gt;
name_of_table        LIKE        EDISEGSTRU      

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 20:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412833#M198753</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-21T20:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Declaring a table like another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412834#M198754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : IT_TAB type standard table of EDISEGSTRU initial size 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the above statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 20:17:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412834#M198754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T20:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Declaring a table like another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412835#M198755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;You cab use &lt;/P&gt;&lt;P&gt;data:  it_EDISEGSTRU like EDISEGSTRU  occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 20:20:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412835#M198755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T20:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Declaring a table like another table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412836#M198756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: gt_itab type standard table of EDISEGSTRU&lt;/P&gt;&lt;P&gt;                   with header line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 20:20:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/declaring-a-table-like-another-table/m-p/1412836#M198756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T20:20:42Z</dc:date>
    </item>
  </channel>
</rss>

