<?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_READ_TABLE - options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669082#M29415</link>
    <description>&lt;P&gt;This FM is not released for customer and has further restrictions, see note&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;382318 - FAQ|Function module RFC_READ_TABLE&lt;/P&gt;So you should avoid using it.</description>
    <pubDate>Thu, 28 Jun 2018 18:29:05 GMT</pubDate>
    <dc:creator>harald_lesche-holzbecher</dc:creator>
    <dc:date>2018-06-28T18:29:05Z</dc:date>
    <item>
      <title>RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669079#M29412</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;
  &lt;P&gt;Is there a possibility to give IN operator in the selection option of the query for the table in the RFC_READ_TABLE function module ?? Or is only the selection possible one by one using the options text. I have to select a range of document values for a particular field.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 13:19:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669079#M29412</guid>
      <dc:creator>former_member185537</dc:creator>
      <dc:date>2018-06-27T13:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669080#M29413</link>
      <description>&lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I take it you're trying to read a table from a different server and that's why you're not using a SELECT?&lt;/P&gt;
  &lt;P&gt;IN can be used in the form of Field in (value1, value2,....)&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 13:39:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669080#M29413</guid>
      <dc:creator>ArthurParisius</dc:creator>
      <dc:date>2018-06-27T13:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669081#M29414</link>
      <description>&lt;P&gt;that function module call a dynamic SQL so you can define your WHERE clause as you want.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;SELECT * FROM (QUERY_TABLE) INTO &amp;lt;WA&amp;gt; WHERE (OPTIONS).&lt;/P&gt;
  &lt;P&gt;You can use IN (value1, value2...) or if it required you can enhancement that rfc to add range variable.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2018 05:11:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669081#M29414</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2018-06-28T05:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669082#M29415</link>
      <description>&lt;P&gt;This FM is not released for customer and has further restrictions, see note&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;382318 - FAQ|Function module RFC_READ_TABLE&lt;/P&gt;So you should avoid using it.</description>
      <pubDate>Thu, 28 Jun 2018 18:29:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669082#M29415</guid>
      <dc:creator>harald_lesche-holzbecher</dc:creator>
      <dc:date>2018-06-28T18:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669083#M29416</link>
      <description>&lt;P&gt;Hello Harald,&lt;/P&gt;
  &lt;P&gt;Is there any alternative for the reading of the table from another table ?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 06:25:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669083#M29416</guid>
      <dc:creator>former_member185537</dc:creator>
      <dc:date>2018-06-29T06:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669084#M29417</link>
      <description>&lt;P&gt;Hello Arthur,&lt;/P&gt;
  &lt;P&gt;It does not go with the FM&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 06:26:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669084#M29417</guid>
      <dc:creator>former_member185537</dc:creator>
      <dc:date>2018-06-29T06:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669085#M29418</link>
      <description>&lt;P&gt;Hello Quynh,&lt;/P&gt;
  &lt;P&gt;Same case as Arthur&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 06:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669085#M29418</guid>
      <dc:creator>former_member185537</dc:creator>
      <dc:date>2018-06-29T06:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669086#M29419</link>
      <description>It does work.
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Try testing it for example for table T000 and place MANDT IN ('000', '001') in the options table&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 07:11:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669086#M29419</guid>
      <dc:creator>ArthurParisius</dc:creator>
      <dc:date>2018-06-29T07:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669087#M29420</link>
      <description>&lt;P&gt;The SQL i got abow is copied from that fm, so since its dynamic SQL and SQL accept the statement IN( ... ) then it should work. could you share your coding call fm?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 07:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669087#M29420</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2018-06-29T07:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669088#M29421</link>
      <description>&lt;P&gt;Expose the data you need as a service or callable RFC function in the remote system.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 12:56:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669088#M29421</guid>
      <dc:creator>pokrakam</dc:creator>
      <dc:date>2018-06-29T12:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE - options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669089#M29422</link>
      <description>&lt;P&gt;Hello Arthur, &lt;/P&gt;
  &lt;P&gt;I had made a mistake in the query . I had used a period at the end. The ( ) technique works. Thanks for the suggestion.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jul 2018 07:27:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-options/m-p/669089#M29422</guid>
      <dc:creator>former_member185537</dc:creator>
      <dc:date>2018-07-01T07:27:05Z</dc:date>
    </item>
  </channel>
</rss>

