<?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: FM - TABLE structure in IMPORT interface in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-table-structure-in-import-interface/m-p/7983088#M1604926</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem;that is even the best choice as TABLES parameters are allowed but obsolete.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;TABLES parameters are table parameters. &lt;STRONG&gt;Table parameters are &lt;U&gt;obsolete&lt;/U&gt; CHANGING parameters that are typed as standard tables with a header line&lt;/STRONG&gt;. If an internal table without a header line or a table body is passed as an actual parameter to a formal parameter of this type, an empty local header line is generated in the function module. If an internal table with a header line is used as an actual parameter, both the table body and the header line are passed to the function module. Pass by value is not possible in formal parameters defined using TABLES. Formal parameters defined with TABLES can be replaced by formal parameters defined with CHANGING. A local work area can be created for the internal table in the function module by using the addition LIKE LINE OF itab of the DATA statement.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;(from [Function Module Interfaces |http://help.sap.com/abapdocu_70/en/ABENFUNCTION.htm])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Jun 2011 07:45:17 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2011-06-28T07:45:17Z</dc:date>
    <item>
      <title>FM - TABLE structure in IMPORT interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-table-structure-in-import-interface/m-p/7983086#M1604924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell what possible issues might be there when a TABLE structure (PDF data) is being passed in the IMPORT interface of FM (instead of TABLES interface)? There is no problem though.&lt;/P&gt;&lt;P&gt;I am not sure if I need to rectify this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Usham.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 06:52:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-table-structure-in-import-interface/m-p/7983086#M1604924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-28T06:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: FM - TABLE structure in IMPORT interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-table-structure-in-import-interface/m-p/7983087#M1604925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Usham,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There shouldn't be any issue, and in case if your FM is a RFC(or has a scope of being an RFC in the future) on the contrary it is best practices not to use TABLES parameter anymore as it is deprecated.&lt;/P&gt;&lt;P&gt;See the below thread for more details,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1642757"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 07:38:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-table-structure-in-import-interface/m-p/7983087#M1604925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-28T07:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: FM - TABLE structure in IMPORT interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-table-structure-in-import-interface/m-p/7983088#M1604926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem;that is even the best choice as TABLES parameters are allowed but obsolete.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;TABLES parameters are table parameters. &lt;STRONG&gt;Table parameters are &lt;U&gt;obsolete&lt;/U&gt; CHANGING parameters that are typed as standard tables with a header line&lt;/STRONG&gt;. If an internal table without a header line or a table body is passed as an actual parameter to a formal parameter of this type, an empty local header line is generated in the function module. If an internal table with a header line is used as an actual parameter, both the table body and the header line are passed to the function module. Pass by value is not possible in formal parameters defined using TABLES. Formal parameters defined with TABLES can be replaced by formal parameters defined with CHANGING. A local work area can be created for the internal table in the function module by using the addition LIKE LINE OF itab of the DATA statement.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;(from [Function Module Interfaces |http://help.sap.com/abapdocu_70/en/ABENFUNCTION.htm])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 07:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-table-structure-in-import-interface/m-p/7983088#M1604926</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2011-06-28T07:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: FM - TABLE structure in IMPORT interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-table-structure-in-import-interface/m-p/7983089#M1604927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Chen and Raymond. I feel relieved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although TABLES parameters in FM are said to be OBSOLETE, it is a must if we have any TABLE structure passed in RFC enabled FM and the table has huge content; Otherwise it just doesn't work. (Check my previous thread @ [COMMUNICATION_FAILURE in CALL FUNCTION STARTING NEW TASK/Background task   |&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1980749"&gt;&lt;/A&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Usham.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 10:06:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-table-structure-in-import-interface/m-p/7983089#M1604927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-28T10:06:22Z</dc:date>
    </item>
  </channel>
</rss>

