<?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: Fetching table data from another SAP system or client. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229753#M1984334</link>
    <description>&lt;P&gt;For information, concerning RFC_READ_TABLE:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I don't understand why you couldn't select more than one column (parameter FIELDS is an internal table, each line is used to indicate one column).&lt;/LI&gt;&lt;LI&gt;There's no limit of the WHERE because it's an internal table (lines of 72 characters each, which are concatenated to form one logical expression).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Anyway, don't use RFC_READ_TABLE, as already discussed in the forum.&lt;/P&gt;</description>
    <pubDate>Thu, 20 Aug 2020 12:56:24 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2020-08-20T12:56:24Z</dc:date>
    <item>
      <title>Fetching table data from another SAP system or client.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229748#M1984329</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;I am working on client 100 and want to fetch a complete table from client 200 at once using a report program. I tried using RFC_READ_TABLE but that is not working for me as it only fetches one single column also my where clause is a long statement which is getting truncated due to the limit of C(72).&lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 05:38:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229748#M1984329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-08-20T05:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching table data from another SAP system or client.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229749#M1984330</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You should create a RFC-enabled FM and call it with destination to remote system. This way you can include all you complex where logic and tables in FM code.&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 05:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229749#M1984330</guid>
      <dc:creator>GK817</dc:creator>
      <dc:date>2020-08-20T05:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching table data from another SAP system or client.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229750#M1984331</link>
      <description>&lt;P&gt;1. Use SELECT ... USING CLIENT '200' ... (or CLIENT SPECIFIED ... WHERE &amp;lt;clientcolumn&amp;gt; = '200')&lt;/P&gt;&lt;P&gt;2. Or create a custom RFC-enabled function module to do the job, instead of using RFC_READ_TABLE (not a good idea to use it, as already discussed in the forum).&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 05:52:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229750#M1984331</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-08-20T05:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching table data from another SAP system or client.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229751#M1984332</link>
      <description>&lt;P&gt;Thanks for the help.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 12:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229751#M1984332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-08-20T12:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching table data from another SAP system or client.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229752#M1984333</link>
      <description>&lt;P&gt;Very helpful.&lt;BR /&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 12:49:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229752#M1984333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-08-20T12:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching table data from another SAP system or client.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229753#M1984334</link>
      <description>&lt;P&gt;For information, concerning RFC_READ_TABLE:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I don't understand why you couldn't select more than one column (parameter FIELDS is an internal table, each line is used to indicate one column).&lt;/LI&gt;&lt;LI&gt;There's no limit of the WHERE because it's an internal table (lines of 72 characters each, which are concatenated to form one logical expression).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Anyway, don't use RFC_READ_TABLE, as already discussed in the forum.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 12:56:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-table-data-from-another-sap-system-or-client/m-p/12229753#M1984334</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-08-20T12:56:24Z</dc:date>
    </item>
  </channel>
</rss>

