<?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: Regarding Remote Function Module RFC_READ_TABLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-remote-function-module-rfc-read-table/m-p/2915197#M686255</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the following.&lt;/P&gt;&lt;P&gt;1) Refer SAP Note: 758278, 382318&lt;/P&gt;&lt;P&gt;2) Try to fill query_table in FM RFC_READ_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are changing RFC_READ_TABLE, please change this also. this is not in the above said NOTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;old code:--&amp;gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   data: begin of work, buffer(30000), end of work.&lt;/P&gt;&lt;P&gt;   field-symbols: &amp;lt;wa&amp;gt; type any, &amp;lt;comp&amp;gt; type any.&lt;/P&gt;&lt;P&gt;   assign work to &amp;lt;wa&amp;gt; casting type (query_table).&lt;/P&gt;&lt;P&gt;   if rowcount &amp;gt; 0.&lt;/P&gt;&lt;P&gt;     rowcount = rowcount + rowskips.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;New Code :--&amp;gt;&lt;/P&gt;&lt;P&gt;  data: dref type ref to data.           &lt;/P&gt;&lt;P&gt;  field-symbols: &amp;lt;wa&amp;gt; type any, &amp;lt;comp&amp;gt; type any.&lt;/P&gt;&lt;P&gt;  create data dref type (query_table).  &lt;/P&gt;&lt;P&gt;  assign dref-&amp;gt;* to &amp;lt;wa&amp;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;Else, I guess the only option is to write your own RFC enabled FMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Lokesh Aggarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2007 15:27:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-18T15:27:56Z</dc:date>
    <item>
      <title>Regarding Remote Function Module RFC_READ_TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-remote-function-module-rfc-read-table/m-p/2915196#M686254</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;This is urgent. point will be awarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have following requirement in remote function module RFC_READ_TABLE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The scope of function module RFC_READ_TABLE is very restricted. E.g., due to the fixed maximum row size only smaller tables can be accessed. There are several data types that cannot be handled, and also there are doubts regarding the Unicode compatibility of the function module.&lt;/P&gt;&lt;P&gt;However, all this is quite immaterial, because the function is not meant to be publicly used anyway. It was only created to be used as a sample in various training courses, and is clearly flagged as "not released for customer".&lt;/P&gt;&lt;P&gt;Solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so please let me know how to overcome this problem in RFC_READ_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regds,&lt;/P&gt;&lt;P&gt;zubera&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 09:23:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-remote-function-module-rfc-read-table/m-p/2915196#M686254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T09:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Remote Function Module RFC_READ_TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-remote-function-module-rfc-read-table/m-p/2915197#M686255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the following.&lt;/P&gt;&lt;P&gt;1) Refer SAP Note: 758278, 382318&lt;/P&gt;&lt;P&gt;2) Try to fill query_table in FM RFC_READ_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are changing RFC_READ_TABLE, please change this also. this is not in the above said NOTE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;old code:--&amp;gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   data: begin of work, buffer(30000), end of work.&lt;/P&gt;&lt;P&gt;   field-symbols: &amp;lt;wa&amp;gt; type any, &amp;lt;comp&amp;gt; type any.&lt;/P&gt;&lt;P&gt;   assign work to &amp;lt;wa&amp;gt; casting type (query_table).&lt;/P&gt;&lt;P&gt;   if rowcount &amp;gt; 0.&lt;/P&gt;&lt;P&gt;     rowcount = rowcount + rowskips.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;New Code :--&amp;gt;&lt;/P&gt;&lt;P&gt;  data: dref type ref to data.           &lt;/P&gt;&lt;P&gt;  field-symbols: &amp;lt;wa&amp;gt; type any, &amp;lt;comp&amp;gt; type any.&lt;/P&gt;&lt;P&gt;  create data dref type (query_table).  &lt;/P&gt;&lt;P&gt;  assign dref-&amp;gt;* to &amp;lt;wa&amp;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;Else, I guess the only option is to write your own RFC enabled FMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Lokesh Aggarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 15:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-remote-function-module-rfc-read-table/m-p/2915197#M686255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T15:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Remote Function Module RFC_READ_TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-remote-function-module-rfc-read-table/m-p/2915198#M686256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi lokesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code u mentioned ( new code) what it will do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whether it will help in accessing larger table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regds,&lt;/P&gt;&lt;P&gt;zub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 15:57:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-remote-function-module-rfc-read-table/m-p/2915198#M686256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T15:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Remote Function Module RFC_READ_TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-remote-function-module-rfc-read-table/m-p/2915199#M686257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It helps to read long structures...&lt;/P&gt;&lt;P&gt;refer to this link&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="496258"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 16:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-remote-function-module-rfc-read-table/m-p/2915199#M686257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T16:03:43Z</dc:date>
    </item>
  </channel>
</rss>

