<?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 multiple values to Function Module export parameter? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066232#M1703109</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You create table type via SE11 (check "Data Type" and select "Table type" in pop-up window) Here you define the type of line records using a structure or other ddic object , choose a standard table with default values in last two tabs.&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>Wed, 24 Oct 2012 06:01:10 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2012-10-24T06:01:10Z</dc:date>
    <item>
      <title>Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066224#M1703101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to return multiple items in a FM export parameter?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scenario:&lt;/P&gt;&lt;P&gt;I need to create an RFC that returns the current totals for each Measurement Point for a piece of Equipment.&amp;nbsp; I am passing Object Number from EQUI Table to get Measurement Points in IMPTT table; then I am passing the POINT field from IMPTT Table to IMRG table-RECDV (which contains the current measurement point total).&amp;nbsp; This is working fine and returning data for the First Measurement Point, but I am not sure how to make this work for all the Measurement Points instead of just one.&amp;nbsp; I tried a 'SELECT - END SELECT' statement, but that just returned the data for the Last Measurement Point.&amp;nbsp; What is the best way to return data for all of the Measurement Point fields?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code I have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;FUNCTION Z_MEAS_PT_INFO .&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*"----------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*"*"Local Interface:&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*"&amp;nbsp; IMPORTING&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUE(IV_EQUNR) TYPE&amp;nbsp; EQUI-EQUNR&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*"&amp;nbsp; EXPORTING&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUE(EV_OBJNR) TYPE&amp;nbsp; EQUI-OBJNR&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUE(EV_POINT) TYPE&amp;nbsp; IMPTT-POINT&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUE(EV_RECDV) TYPE&amp;nbsp; IMRG-RECDV&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*"----------------------------------------------------------------------&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; SELECT SINGLE&lt;SPAN class="L0S52"&gt; &lt;/SPAN&gt;OBJNR&lt;BR /&gt;&amp;nbsp; FROM&lt;SPAN class="L0S52"&gt;&amp;nbsp; &lt;/SPAN&gt;EQUI&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO&amp;nbsp; &lt;/SPAN&gt;(EV_OBJNR&amp;nbsp; )&lt;BR /&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE&amp;nbsp; &lt;/SPAN&gt;EQUNR = IV_EQUNR.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SINGLE &lt;/SPAN&gt;POINT&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;IMPTT&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;(EV_POINT )&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;MPOBJ = EV_OBJNR.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SINGLE &lt;/SPAN&gt;RECDV&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;IMRG&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;(EV_RECDV )&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;POINT = EV_POINT.&lt;BR /&gt; &lt;BR /&gt; ENDFUNCTION.&lt;/SPAN&gt;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 18:17:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066224#M1703101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-23T18:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066225#M1703102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change the returned parameters type&amp;nbsp; to ddic internal table type, ans change your select to &lt;A href="http://help.sap.com/abapdocu_70/en/ABAPINTO_CLAUSE.htm#&amp;amp;ABAP_ALTERNATIVE_3@3@"&gt;SELECT INTO TABLE&lt;/A&gt;, and &lt;A href="http://help.sap.com/abapdocu_70/en/ABENWHERE_LOGEXP_ITAB.htm"&gt;FOR ALL ENTRIES IN&lt;/A&gt; to build the returned internal table parameter.&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, 23 Oct 2012 18:38:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066225#M1703102</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-10-23T18:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066226#M1703103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the FM has a option of tables. you could define a table and use that to transfer your values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;swanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 19:58:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066226#M1703103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-23T19:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066227#M1703104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for responding Raymond.&amp;nbsp; Are you recommending that I create a table in the Data dictionary that contains the fields that I am interested in returning (EQUI-OBJNR, IMPTT-MPOBJ, IMRG-POINT, IMRG-RECDV) and then pass them to an internal table in the function?&amp;nbsp; (For previous tasks I have been creating Database Views that contain the fields I want, but for some reason making a Database View did not work for me for this objective; I think because I have to pass values to get to the field POINT, so I can’t just put them all in a View and SELECT *)&lt;/P&gt;&lt;P&gt;&amp;nbsp; Would my ‘DDIC internal table type’ be a Tables parameter?&amp;nbsp; If you don’t mind can you elaborate? I am a new ABAP Programmer and this capability is a next step for me.&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 20:00:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066227#M1703104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-23T20:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066228#M1703105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eric, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table type should go under export/import parameters. &lt;/P&gt;&lt;P&gt;Check this FM as an example - LWMS_LIKP_GET&lt;/P&gt;&lt;P&gt;IMPORT TAB: &lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;IV_OBCLS&lt;/TD&gt;&lt;TD&gt;TYPE&lt;/TD&gt;&lt;TD&gt;LTRM_OBCLS&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;IV_VBELN&lt;/TD&gt;&lt;TD&gt;TYPE&lt;/TD&gt;&lt;TD&gt;LWMS_VBELN_VL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;IT_VBELN&lt;/TD&gt;&lt;TD&gt;TYPE&lt;/TD&gt;&lt;TD&gt;TT_VBELN&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;IV_WHERE&lt;/TD&gt;&lt;TD&gt;TYPE&lt;/TD&gt;&lt;TD&gt;XFELD&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TT_VBELN is a table type and is used in import paramters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;VM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 20:13:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066228#M1703105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-23T20:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066229#M1703106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For multiple records, please use table parameter. Export/Import will work for single field value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 03:16:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066229#M1703106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-24T03:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066230#M1703107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not true. You can use Export/Import for multiple values, if you use a table type (as explained by &lt;A __default_attr="515690" __jive_macro_name="user" class="jive_macro jive_macro_user" href="https://community.sap.com/" modifiedtitle="true" title="Venkat"&gt;&lt;/A&gt; above)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 05:12:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066230#M1703107</guid>
      <dc:creator>custodio_deoliveira</dc:creator>
      <dc:date>2012-10-24T05:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066231#M1703108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And TABLE parameters in FM &lt;A href="http://help.sap.com/abapdocu_70/en/ABENFUNCTION.htm"&gt;are now obsolete&lt;/A&gt;, allowed but obsolete.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;Table parameters are obsolete &lt;STRONG style="font-size: 10pt; font-family: Courier New;"&gt;CHANGING&lt;/STRONG&gt; parameters that are typed as &lt;A href="http://help.sap.com/abapdocu_70/en/ABENSTANDARD_TABLE_GLOSRY.htm" style="color: #505050;"&gt;standard tables&lt;/A&gt; with a &lt;A href="http://help.sap.com/abapdocu_70/en/ABENHEADER_LINE_GLOSRY.htm" style="color: #505050;"&gt;header line&lt;/A&gt;.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&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>Wed, 24 Oct 2012 05:56:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066231#M1703108</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-10-24T05:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066232#M1703109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You create table type via SE11 (check "Data Type" and select "Table type" in pop-up window) Here you define the type of line records using a structure or other ddic object , choose a standard table with default values in last two tabs.&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>Wed, 24 Oct 2012 06:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066232#M1703109</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-10-24T06:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066233#M1703110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can someone please demonstrate a simple example of passing multiple export variables in a function module using a Data Dictionary Table Type and an internal table?&amp;nbsp; I have not ever created a table type in the data dictionary.&amp;nbsp; Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 19:44:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066233#M1703110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-24T19:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066234#M1703111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;please refer below link for creating table type - &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp60_sp/helpdata/en/90/8d731fb1af11d194f600a0c929b3c3/content.htm"&gt;http://help.sap.com/saphelp_erp60_sp/helpdata/en/90/8d731fb1af11d194f600a0c929b3c3/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For help on function module - &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/abapdocu_702/en/abenfunction.htm"&gt;http://help.sap.com/abapdocu_702/en/abenfunction.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See below screen, once you define the table type under the associated type you put the name of it and use it in the FM. The table in the FM code will be populated with multiple rows for use.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/150839" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;swanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2012 15:24:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066234#M1703111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-26T15:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066235#M1703112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Remote-enabled Function Modules, TABLES is a valid use... this is preferred, in fact, for RFC's.&amp;nbsp; If not remote enabled, then use the table types to pass tables of data, as noted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2012 19:05:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066235#M1703112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-26T19:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Pass multiple values to Function Module export parameter?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066236#M1703113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Only if you don't use &lt;A href="http://help.sap.com/abapdocu_702/en/abenbasxml_glosry.htm"&gt;basXML&lt;/A&gt; is not selected as the &lt;A href="http://help.sap.com/abapdocu_702/en/abenrfc_protocol.htm"&gt;RFC protoco&lt;/A&gt;l. (Protocol available from Release 7.0, EhP2)&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>Sat, 27 Oct 2012 08:51:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-multiple-values-to-function-module-export-parameter/m-p/9066236#M1703113</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-10-27T08:51:01Z</dc:date>
    </item>
  </channel>
</rss>

