<?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: how to make input parameter with multiple values in function module? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174763#M1198075</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt; one thingyou can do is to create a stucture in SE11 with field SIGN&lt;/P&gt;&lt;P&gt;OPTION,LOW and HIGH.Create a table type also in SE11 with this structure.&lt;/P&gt;&lt;P&gt;Goto your function module and under the TABLES parameter create a table &lt;/P&gt;&lt;P&gt;using the table type created in SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the program pass the select-option parameter to the function module.&lt;/P&gt;&lt;P&gt;By this way you can pass multiple entries to the function module.&lt;/P&gt;&lt;P&gt;Try this,&lt;/P&gt;&lt;P&gt;This will defnitly solve your problem.&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Hareesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Feb 2009 03:39:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-12T03:39:10Z</dc:date>
    <item>
      <title>how to make input parameter with multiple values in function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174760#M1198072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to add BUKRS as import field to a FM, what is the best way of of making it accept multiple enteries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 02:31:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174760#M1198072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T02:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to make input parameter with multiple values in function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174761#M1198073</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;you have two possibilities:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) use TABLES. You add new table parameter with type LIKE bukrs.&lt;/P&gt;&lt;P&gt;2) You define a new table type of bukrs in SE11 and use this type for new import parameter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first way is obsolete but second is annoying because you need to define new type in SE11. Fortunately there is already table type T_BUKRS defined by SAP. So I would use second way in this case and use type T_BUKRS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 02:58:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174761#M1198073</guid>
      <dc:creator>mvoros</dc:creator>
      <dc:date>2009-02-12T02:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to make input parameter with multiple values in function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174762#M1198074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;create one structure in DDIC with fields&lt;/P&gt;&lt;P&gt;SIGN&lt;/P&gt;&lt;P&gt;OPTION &lt;/P&gt;&lt;P&gt;LOW  &lt;/P&gt;&lt;P&gt;HIGH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like select option of BUKRS and in IMPORT part of FM create one variable like this structure and pass the BUKRS select option from your program to FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 03:13:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174762#M1198074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T03:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to make input parameter with multiple values in function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174763#M1198075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt; one thingyou can do is to create a stucture in SE11 with field SIGN&lt;/P&gt;&lt;P&gt;OPTION,LOW and HIGH.Create a table type also in SE11 with this structure.&lt;/P&gt;&lt;P&gt;Goto your function module and under the TABLES parameter create a table &lt;/P&gt;&lt;P&gt;using the table type created in SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the program pass the select-option parameter to the function module.&lt;/P&gt;&lt;P&gt;By this way you can pass multiple entries to the function module.&lt;/P&gt;&lt;P&gt;Try this,&lt;/P&gt;&lt;P&gt;This will defnitly solve your problem.&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Hareesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 03:39:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174763#M1198075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T03:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to make input parameter with multiple values in function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174764#M1198076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The simple way is to create a data element &amp;amp; domain with value range where u provide set of fixed values or provide a check table to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use that data element in a table &amp;lt;ztable&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Code:
Parameters:
      p_burks like &amp;lt;ztable&amp;gt;-dataelement.

Call Function &amp;lt;function_name&amp;gt;
exporting 
p_burks = p_burks,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;:&lt;/P&gt;&lt;P&gt;:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 04:24:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174764#M1198076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T04:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to make input parameter with multiple values in function module?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174765#M1198077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the safest way woyuld be to use tables statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 04:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-input-parameter-with-multiple-values-in-function-module/m-p/5174765#M1198077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T04:27:10Z</dc:date>
    </item>
  </channel>
</rss>

