<?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: Remote-Enabled Method (wrt ABAP Objects) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662708#M1574209</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;I think you have to use RFC function modules from within you can call the methods of your classes with the parameters given by RFC!&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;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Feb 2011 11:35:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-24T11:35:27Z</dc:date>
    <item>
      <title>Remote-Enabled Method (wrt ABAP Objects)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662706#M1574207</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;&lt;/P&gt;&lt;P&gt;Adhering to ABAP Objects, in my project, i am creating &lt;STRONG&gt;instance methods&lt;/STRONG&gt; or &lt;STRONG&gt;static methods&lt;/STRONG&gt; instead of &lt;STRONG&gt;Function modules&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i have a requirement, where some functionality needs to be invoked on another server using an RFC destination.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i create a function module, &lt;/P&gt;&lt;P&gt;1)i can tick the radio button "Remote-Enabled Module" under the Attributes of function module and &lt;/P&gt;&lt;P&gt;2)i can invoke it as&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
CALL FUNCTION 'ZMY_FM' DESTINATION 'RFCDESTNAME'
	EXPORTING
	...            
	IMPORTING
	...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in such cases is it mandatorily required to create an FM like above, or can i avoid it by writing an equivalent instance method or static method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if we replace the FM with a method, then &lt;/P&gt;&lt;P&gt;1)how can i make the method rfc enabled, and &lt;/P&gt;&lt;P&gt;2)what is the syntax of providing the rfc destination name while invoking method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other concept provided in ABAP Objects, that is recommended instead of "Remote-Enabled Function Modules" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;Madhu_1980&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 07:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662706#M1574207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T07:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remote-Enabled Method (wrt ABAP Objects)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662707#M1574208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Madhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you look at the &lt;EM&gt;properties&lt;/EM&gt; of any global class you will find that the DropDown list for "&lt;STRONG&gt;Category&lt;/STRONG&gt;" contains item:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
30 = Proxy Class for Remote Interface
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For me this sounds like that there might be something in the pipeline of SAP to provide RFC-enabled methods. However, if and when this becomes true is probably unknown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 11:16:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662707#M1574208</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2011-02-24T11:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Remote-Enabled Method (wrt ABAP Objects)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662708#M1574209</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;I think you have to use RFC function modules from within you can call the methods of your classes with the parameters given by RFC!&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;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Feb 2011 11:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662708#M1574209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-24T11:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Remote-Enabled Method (wrt ABAP Objects)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662709#M1574210</link>
      <description>&lt;H3&gt;&lt;/H3&gt;&lt;P&gt;From the F1&lt;/P&gt;&lt;H3&gt;Class/Interface category&lt;/H3&gt;&lt;P&gt;This field cannot be maintained explicitly, but is assigned to special types of classes.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 13:44:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662709#M1574210</guid>
      <dc:creator>Astashonok</dc:creator>
      <dc:date>2020-07-02T13:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Remote-Enabled Method (wrt ABAP Objects)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662710#M1574211</link>
      <description>&lt;P&gt;That's right. Type 30 is used for proxy classes generated for SOAP and PI (I think). &lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 18:38:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-enabled-method-wrt-abap-objects/m-p/7662710#M1574211</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2020-07-02T18:38:58Z</dc:date>
    </item>
  </channel>
</rss>

