<?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: internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842603#M923904</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;if the structure of internal table int_itab &amp;amp; z_op are same then directly u can pass data from table to another table using &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
z_op[] = int_itab[].
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if these two are don't have same structure use the code like below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at int_itab.
  move corresponding int_itab to z_op.
  append z_op.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 May 2008 04:35:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-16T04:35:02Z</dc:date>
    <item>
      <title>internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842601#M923902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a internal table filled with 'n' rows, n&amp;gt;1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I want to transfer the rows to table parameter of an rfc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table parameter of rfc is defined as a reference to a structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say my internal table is int_itab&lt;/P&gt;&lt;P&gt;And my tables paramater is z_op&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i transfer rows from int_itab to z_op&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 04:28:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842601#M923902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T04:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842602#M923903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the structures are same you can use APPEND LINES OF syntax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 04:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842602#M923903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T04:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842603#M923904</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;if the structure of internal table int_itab &amp;amp; z_op are same then directly u can pass data from table to another table using &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
z_op[] = int_itab[].
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if these two are don't have same structure use the code like below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at int_itab.
  move corresponding int_itab to z_op.
  append z_op.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 04:35:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842603#M923904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T04:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842604#M923905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare the same type of your structure defined in RFC .&lt;/P&gt;&lt;P&gt;That internal table is same type of the table declared in FM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and pass the records of your internal table to that defined structure.&lt;/P&gt;&lt;P&gt;and execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL 'ZGET_LIFNR' DESTINATION 'REMOTE''&lt;/P&gt;&lt;P&gt;EXPORTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt; ZTAB = ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE ITAB SHOULD BE HAVING SAME STRUCTURE OF ZTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 04:37:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842604#M923905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T04:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842605#M923906</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;    define one internal table with type of table parameter(table type)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_tab type table type,&lt;/P&gt;&lt;P&gt;wa_itab type (table type of line type)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign u r internal table values into work area of (table type)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append internal table(table type).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass appended internal table as inputparameter to RFC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope u r problem will be solved.&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;kishore.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 04:40:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/3842605#M923906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T04:40:47Z</dc:date>
    </item>
  </channel>
</rss>

