<?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 Perform Qustion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131097#M987824</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;&lt;/P&gt;&lt;P&gt;i doing fm and i use performs tables itab ....&lt;/P&gt;&lt;P&gt;inside the perform i put :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables p_itab &lt;STRONG&gt;structure&lt;/STRONG&gt; itab &lt;/P&gt;&lt;P&gt;but some time its works and some time don't,&lt;/P&gt;&lt;P&gt;i have to declare it : tables p_itab &lt;STRONG&gt;like&lt;/STRONG&gt;  itab  (then it works) &lt;/P&gt;&lt;P&gt;what it can be .&lt;/P&gt;&lt;P&gt;i declare it all the time the same (in top)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types :begin of 1_tab,&lt;/P&gt;&lt;P&gt;          pernr type pernr_d,&lt;/P&gt;&lt;P&gt;         end of 1_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type table of 1_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2008 19:58:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-09T19:58:29Z</dc:date>
    <item>
      <title>Perform Qustion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131097#M987824</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;&lt;/P&gt;&lt;P&gt;i doing fm and i use performs tables itab ....&lt;/P&gt;&lt;P&gt;inside the perform i put :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables p_itab &lt;STRONG&gt;structure&lt;/STRONG&gt; itab &lt;/P&gt;&lt;P&gt;but some time its works and some time don't,&lt;/P&gt;&lt;P&gt;i have to declare it : tables p_itab &lt;STRONG&gt;like&lt;/STRONG&gt;  itab  (then it works) &lt;/P&gt;&lt;P&gt;what it can be .&lt;/P&gt;&lt;P&gt;i declare it all the time the same (in top)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types :begin of 1_tab,&lt;/P&gt;&lt;P&gt;          pernr type pernr_d,&lt;/P&gt;&lt;P&gt;         end of 1_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type table of 1_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 19:58:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131097#M987824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T19:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Perform Qustion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131098#M987825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would say to always use a Table Type declaration when typing a TABLES parameter in the FORM statement.  In this case...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

types :begin of 1_tab,
       pernr type pernr_d,
       end of 1_tab,
       
       tt_1tab type table of 1_tab.

form some_form  tables p_itab type tt_1tab.

endform.

&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>Wed, 09 Jul 2008 20:08:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131098#M987825</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-07-09T20:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Perform Qustion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131099#M987826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ricardo arona ,&lt;/P&gt;&lt;P&gt;                                always use TYPES statement for defining the internal table or use like &lt;/P&gt;&lt;P&gt;DATA : &amp;lt;ITAB&amp;gt; TYPE TABLE of &amp;lt;STRUCTURE&amp;gt;.&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;Greetson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 20:14:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131099#M987826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T20:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Perform Qustion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131100#M987827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why u don't recommended to use data :itab type tables of 1_tab.&lt;/P&gt;&lt;P&gt;and when i do double click on new perform i get like p_itab structure itab u tell its better to use it with type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 20:15:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131100#M987827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T20:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Perform Qustion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131101#M987828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAP recommends to always use table types in any intefaces, methods, function modules, and forms.&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>Wed, 09 Jul 2008 21:05:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-qustion/m-p/4131101#M987828</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-07-09T21:05:52Z</dc:date>
    </item>
  </channel>
</rss>

