<?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: RFC input Table parameter holds how many rows in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222336#M1983722</link>
    <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;pankaj_p&lt;/SPAN&gt;, is your question answered, do you still have open or new issues with your question? Please add comments if still issues exist, upvote or accept answers if answers are valuable or sufficient to solve your problem, add and describe your own answer if you found a totally different solution to your problem, close question with appropriate tag if discussion about the question can be ended.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Oct 2020 03:11:47 GMT</pubDate>
    <dc:creator>michael_piesche</dc:creator>
    <dc:date>2020-10-09T03:11:47Z</dc:date>
    <item>
      <title>RFC input Table parameter holds how many rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222331#M1983717</link>
      <description>&lt;P&gt;Hi experts,&lt;/P&gt;
  &lt;P&gt;I have create one custom RFC to assign roles to user which takes input in table parameter it_user_details which is of type se11 structure. Structure components names are user_id, role_name.&lt;/P&gt;
  &lt;P&gt;Now there can be role wise multiple entries in input table.&lt;/P&gt;
  &lt;P&gt;My question is - How many records we can pass to this table at a time? Is there any limit for number of records?&lt;/P&gt;
  &lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 10:25:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222331#M1983717</guid>
      <dc:creator>former_member849899</dc:creator>
      <dc:date>2020-09-22T10:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: RFC input Table parameter holds how many rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222332#M1983718</link>
      <description>&lt;P&gt;an internal table can contain arbitrary many rows. &lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 10:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222332#M1983718</guid>
      <dc:creator>sergei-u-niq</dc:creator>
      <dc:date>2020-09-22T10:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: RFC input Table parameter holds how many rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222333#M1983719</link>
      <description>&lt;P&gt;I am not aware of any actual limitiations in the amount of table rows for interface parameters. Of course there can be potential problems (network, timeout, memory ...) if there are billions and billions of records with lots of data to be send, but so far I have never encountered a problem that was due to the amount of table rows. The 'only' main drawback with 'too many' records will be the performance of calling the RFC and sending or receiving those records.&lt;/P&gt;&lt;P&gt;How many table rows are you expecting? Even if it is millions in your case with only two rather short attributes, I wouldnt worry too much about it. Of course since you are obviously aware of a large amount of data to be sent, you should still observe and analyse the RFC and its functionality and performance when using it in the production the first time. &lt;/P&gt;&lt;P&gt;There can be of course 'limitations' within the logic of the function that has to work with those records, e.g. if the records are used to select data from a database (e.g. for a SQL SELECT WHERE IN statement, the limitations could be around 10'000), but that would not be a limitation of the interface, but of the logic/coding not appropriately handling large amounts of data.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 10:37:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222333#M1983719</guid>
      <dc:creator>michael_piesche</dc:creator>
      <dc:date>2020-09-22T10:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: RFC input Table parameter holds how many rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222334#M1983720</link>
      <description>&lt;P&gt;the limit is linked to the memory limit specified in the instance parameters (rz10).&lt;/P&gt;&lt;P&gt;Simplified it is : memory size / row size = number of entries possible&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 10:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222334#M1983720</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-09-22T10:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: RFC input Table parameter holds how many rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222335#M1983721</link>
      <description>&lt;P&gt;It depends on the memory available at the time the RFC-enabled function module runs, so it depends of the amount of memory used by other sessions in the server...&lt;/P&gt;&lt;P&gt;In short, don't bother !&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 13:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222335#M1983721</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-09-22T13:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: RFC input Table parameter holds how many rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222336#M1983722</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;pankaj_p&lt;/SPAN&gt;, is your question answered, do you still have open or new issues with your question? Please add comments if still issues exist, upvote or accept answers if answers are valuable or sufficient to solve your problem, add and describe your own answer if you found a totally different solution to your problem, close question with appropriate tag if discussion about the question can be ended.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 03:11:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-input-table-parameter-holds-how-many-rows/m-p/12222336#M1983722</guid>
      <dc:creator>michael_piesche</dc:creator>
      <dc:date>2020-10-09T03:11:47Z</dc:date>
    </item>
  </channel>
</rss>

