<?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: pass i_table with changing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-i-table-with-changing/m-p/4709186#M1106284</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;define a table type like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_ltap,&lt;/P&gt;&lt;P&gt;             lgnum like ltap-lgnum,&lt;/P&gt;&lt;P&gt;             tanum like ltap-tanum,&lt;/P&gt;&lt;P&gt;             tapos like ltap-tapos,&lt;/P&gt;&lt;P&gt;          end of ty_ltap,&lt;/P&gt;&lt;P&gt;          tt_ltap type table of ty_ltap.&lt;/P&gt;&lt;P&gt;data: i_ltap type tt_ltap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the table type in the definition of the subroutine :&lt;/P&gt;&lt;P&gt;FORM subroutine changing pi_ltap type tt_ltap.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And call it by :&lt;/P&gt;&lt;P&gt;perform subroutine changing i_ltap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Hans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Oct 2008 09:04:49 GMT</pubDate>
    <dc:creator>h_senden2</dc:creator>
    <dc:date>2008-10-29T09:04:49Z</dc:date>
    <item>
      <title>pass i_table with changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-i-table-with-changing/m-p/4709184#M1106282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I m trying to pass an internal table with CHANGING&lt;/P&gt;&lt;P&gt;Code &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM X
 it_zfichpai type table of zfichpai,
wa_zfichpai like line of it_zfichpai.
(...)
perform create_md5key changing wa_zfichpai-MD5KEY
                            it_zfichpai.
ENDFORM.


FORM create_MD5key changing hkey type zfichpai-md5key
                            -&amp;gt; p_zfichpai like zfichpai &amp;lt;-(dont work).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the "like" doesn't work,neither "like table of", "type", "type table of"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A way to do it is to make a global declaration of it_zfichpai and use "like" statement in my form declaration but I want my it_zfichpai declaration stay local.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need help &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 09:01:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-i-table-with-changing/m-p/4709184#M1106282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T09:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: pass i_table with changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-i-table-with-changing/m-p/4709185#M1106283</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;Generally internal table are passed using "tables" addition and not "changing" addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Navneeth K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 09:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-i-table-with-changing/m-p/4709185#M1106283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T09:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: pass i_table with changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-i-table-with-changing/m-p/4709186#M1106284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;define a table type like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_ltap,&lt;/P&gt;&lt;P&gt;             lgnum like ltap-lgnum,&lt;/P&gt;&lt;P&gt;             tanum like ltap-tanum,&lt;/P&gt;&lt;P&gt;             tapos like ltap-tapos,&lt;/P&gt;&lt;P&gt;          end of ty_ltap,&lt;/P&gt;&lt;P&gt;          tt_ltap type table of ty_ltap.&lt;/P&gt;&lt;P&gt;data: i_ltap type tt_ltap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the table type in the definition of the subroutine :&lt;/P&gt;&lt;P&gt;FORM subroutine changing pi_ltap type tt_ltap.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And call it by :&lt;/P&gt;&lt;P&gt;perform subroutine changing i_ltap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Hans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 09:04:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-i-table-with-changing/m-p/4709186#M1106284</guid>
      <dc:creator>h_senden2</dc:creator>
      <dc:date>2008-10-29T09:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: pass i_table with changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-i-table-with-changing/m-p/4709187#M1106285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx for replies,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1reply  -&amp;gt; I prefer to not use TABLE cause obsolete &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2reply  -&amp;gt; The probelm is that I m in an include attached to an sap standard program than i prefer to dont add some declaration of type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe is it the only way but i wanted to be sure  : )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 09:09:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-i-table-with-changing/m-p/4709187#M1106285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T09:09:32Z</dc:date>
    </item>
  </channel>
</rss>

