<?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: call function with rfc or not ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025314#M82242</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not sure if this is what you meant.. but you can make an RFC call only if the said function is remotely enabled.. pl verify the attributes of the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Dec 2005 11:10:43 GMT</pubDate>
    <dc:creator>suresh_datti</dc:creator>
    <dc:date>2005-12-13T11:10:43Z</dc:date>
    <item>
      <title>call function with rfc or not ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025313#M82241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I know that an function is called by rfc or not ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;info : The caller is not R/3 system. This web interface...&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>Tue, 13 Dec 2005 10:58:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025313#M82241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-13T10:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: call function with rfc or not ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025314#M82242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not sure if this is what you meant.. but you can make an RFC call only if the said function is remotely enabled.. pl verify the attributes of the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 11:10:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025314#M82242</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-12-13T11:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: call function with rfc or not ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025315#M82243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a REMOTE FUNCTION CALL...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the code of my function, I would like to know if it was called remotly or locally...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 11:13:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025315#M82243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-13T11:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: call function with rfc or not ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025316#M82244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this FM&lt;/P&gt;&lt;P&gt;TRANSACTION_CALL_VIA_RFC&lt;/P&gt;&lt;P&gt;Data : v_bdi_line type bdi_line.&lt;/P&gt;&lt;P&gt;Call Function 'TRANSACTION_CALL_VIA_RFC'&lt;/P&gt;&lt;P&gt;     Exporting &lt;/P&gt;&lt;P&gt;         tcode = sy-tcode.&lt;/P&gt;&lt;P&gt;     importing &lt;/P&gt;&lt;P&gt;         transaction_data = v_bdi_line.&lt;/P&gt;&lt;P&gt;     Exceptions&lt;/P&gt;&lt;P&gt;         tcode_not_exist = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;   It means it is RFC call.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudhakar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 11:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025316#M82244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-13T11:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: call function with rfc or not ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025317#M82245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   You have a syntax for calling the particular RFC function remotely. The syntax is below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Function name ' DESTINATION 'Destination Name'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exports&lt;/P&gt;&lt;P&gt;imports&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;exceptions .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to run that particular function remotely in particular destination specify the destination name.&lt;/P&gt;&lt;P&gt;Then that FM will run remotely else locally if you not specify any destination.&lt;/P&gt;&lt;P&gt;Hope this helps you.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vamshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 11:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025317#M82245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-13T11:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: call function with rfc or not ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025318#M82246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when the FM is called from web interface&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syst-cprog will hold value "SAPMHTTP"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2005 11:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-with-rfc-or-not/m-p/1025318#M82246</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-12-13T11:43:54Z</dc:date>
    </item>
  </channel>
</rss>

