<?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 Remote FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-fm/m-p/6180288#M1373117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a Remote FM in ECC. &lt;/P&gt;&lt;P&gt;And I have created a FM in CRM that calls this ECC RF FM.&lt;/P&gt;&lt;P&gt;When test run CRM FM directly(F8), it works as expected(meaning Tables Parameter is getting filled).&lt;/P&gt;&lt;P&gt;But I call this FM(in CRM) in BADI, it does not work as expected(meaning does not show any data in the TABLEs parameter).&lt;/P&gt;&lt;P&gt;What could be the issue ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;RJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Sep 2009 16:42:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-22T16:42:45Z</dc:date>
    <item>
      <title>Remote FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-fm/m-p/6180288#M1373117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a Remote FM in ECC. &lt;/P&gt;&lt;P&gt;And I have created a FM in CRM that calls this ECC RF FM.&lt;/P&gt;&lt;P&gt;When test run CRM FM directly(F8), it works as expected(meaning Tables Parameter is getting filled).&lt;/P&gt;&lt;P&gt;But I call this FM(in CRM) in BADI, it does not work as expected(meaning does not show any data in the TABLEs parameter).&lt;/P&gt;&lt;P&gt;What could be the issue ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;RJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 16:42:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-fm/m-p/6180288#M1373117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T16:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Remote FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-fm/m-p/6180289#M1373118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your RFC call must be Synchronous RFC call. Check this document for different types of RFC calls&lt;/P&gt;&lt;P&gt; &lt;A href="http://www.sdn.sap.com/irj/sdn/abap?rid=/library/uuid/f078394a-4469-2910-c4bf-853c75674694" target="test_blank"&gt;http://www.sdn.sap.com/irj/sdn/abap?rid=/library/uuid/f078394a-4469-2910-c4bf-853c75674694&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do you call the RFC FM in BADI? Please show your code of calling the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 17:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-fm/m-p/6180289#M1373118</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-09-22T17:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Remote FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-fm/m-p/6180290#M1373119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I have said before, I have created a FM in CRM and that calls the Remote FM of ECC as below:&lt;/P&gt;&lt;P&gt;Basically I have created an Overwrite Method for a BADI method using Enhancement Tech and calling the below FM in CRM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************************************&lt;/P&gt;&lt;P&gt;DATA: ecc_doc TYPE TABLE OF zdoc_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ZCRM_SO_LIST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      iv_customer      = '10049925'   "customer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      et_documents     =ecc_doc.&lt;/P&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;&lt;P&gt;This CRM FM in trun calls the ECC Remote FM as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lt_documents TYPE TABLE OF ZDOC_LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'ZSALESORDER_LIST'  DESTINATION 'ACCCLNT200'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      iv_customer      = iv_customer&lt;/P&gt;&lt;P&gt;         TABLES&lt;/P&gt;&lt;P&gt;      et_documents     = lt_documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;RJ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Remo J on Sep 23, 2009 4:03 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2009 17:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-fm/m-p/6180290#M1373119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-22T17:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Remote FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-fm/m-p/6180291#M1373120</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;One thing I can say is that there is no problem with RFC function module, because you are able get required result from other system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aslo you using same function module in your BADi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So try to work on the Method and parameters, which you created for your BADi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2009 14:26:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-fm/m-p/6180291#M1373120</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2009-09-23T14:26:37Z</dc:date>
    </item>
  </channel>
</rss>

