<?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 Function call problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717929#M1107845</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check if your destination parameter in CALL FUNCTION .. DESTINATION .. is correctly defined (in SM59) and populated. If it is correct, then check if you have flagged your function module in R/3 as a remote enabled function module (in Attributes).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Nov 2008 09:04:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-06T09:04:42Z</dc:date>
    <item>
      <title>RFC Function call problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717928#M1107844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;        As I have to call RFC from BI to R/3, I have to send few values to R/3 through RFC. I have created an RFC in R/3, I am trying to call that RFC from BI, but when I am trying to call RFC from BI the system triggers an error message saying the function Module does not found. As it is made in BI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       I am calling RFC like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Call function &amp;lt;fun_name&amp;gt; destination &amp;lt;d_nm&amp;gt;&lt;/P&gt;&lt;P&gt;  Exporting&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  Importing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt; Can anybody please give me the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717928#M1107844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Function call problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717929#M1107845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check if your destination parameter in CALL FUNCTION .. DESTINATION .. is correctly defined (in SM59) and populated. If it is correct, then check if you have flagged your function module in R/3 as a remote enabled function module (in Attributes).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717929#M1107845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Function call problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717930#M1107846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your quick response. I am getting runtime error as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;An error occurred when executing a REMOTE FUNCTION CALL.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;It was logged under the name "CALL_FUNCTION_NOT_REMOTE"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;on the called page.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code is as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_sposi(18) type c,&lt;/P&gt;&lt;P&gt;       v_filiale(10) type c,&lt;/P&gt;&lt;P&gt;       v_date type datum,&lt;/P&gt;&lt;P&gt;       v_stat1 type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       v_sposi = '1200030'.&lt;/P&gt;&lt;P&gt;       v_filiale = 'DC70'.&lt;/P&gt;&lt;P&gt;       v_date = '20081106'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBI_ASSORTMENT_INDI' destination 'DERCLNT320'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      sposi         = v_sposi&lt;/P&gt;&lt;P&gt;      filiale       = v_filiale&lt;/P&gt;&lt;P&gt;      v_date        = v_date&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     STAT1         = v_stat1&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please correct me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717930#M1107846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Function call problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717931#M1107847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your function module ZBI_ASSORTMENT_INDI is not defined as a remote enabled function module in the R/3 system. Set the type of function module as remote enabled in Attributes tab in SE37 transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717931#M1107847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Function call problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717932#M1107848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot, I got solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:42:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-function-call-problem/m-p/4717932#M1107848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:42:59Z</dc:date>
    </item>
  </channel>
</rss>

