<?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: how to test a RFC ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840576#M1132390</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santoshi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you check this link? Hope it will be helpful for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/be/6e0f41218ff023e10000000a155106/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/be/6e0f41218ff023e10000000a155106/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Nov 2008 06:42:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-28T06:42:40Z</dc:date>
    <item>
      <title>how to test a RFC ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840573#M1132387</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 was asked in an interview...that how we can test the RFC..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please can any body help me on this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 04:30:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840573#M1132387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T04:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to test a RFC ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840574#M1132388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you know how to create a RFC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use transaction SM59 to create RFC connection. Now after creating RFC there is a button on the top of the screen &lt;STRONG&gt;"Test Connection",&lt;/STRONG&gt; you can click the button,and if the connection is established properly then you will get one more screen with connection timings details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arindam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 04:39:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840574#M1132388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T04:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to test a RFC ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840575#M1132389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does RFC mean the "RFC destination" or the RFC function module?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume the interviewer asked for the first one because the latter one just means to call a function module remotely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC destination can be tested using transaction SM59 (connection test, Unicode test, authorization test).&lt;/P&gt;&lt;P&gt;Programatically you may use RFC-fm RFC_GET_SYSTEM_INFO using this RFC destination in order to retrieve some technical information about the target system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since RFCs may fail due to connection / authorization problems you need to call them in the following way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'RFC_GET_SYSTEM_INFO'
    DESTINATION &amp;lt;rfc_dest&amp;gt;
    ...
    EXCEPTIONS
      system_failure = 1 MESSAGE ld_msg
      connection_failure = 2 MESSAGE ld_msg
      others = 3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first two exceptions are &lt;STRONG&gt;standard RFC exceptions&lt;/STRONG&gt;. If the RFC fails you find the message text in LD_MSG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, how do you know that your RFC destination is correct?&lt;/P&gt;&lt;P&gt;Example: RFC destination E01CLNT100 is thought to connect to client 100 of system E01. This client has the represents the logical system E01CLNT100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to check this you can call RFC-fm PARTNER_LOGICAL_SYSTEM_GET on the remote system.&lt;/P&gt;&lt;P&gt;IF the returned logsys is not the expected one then there is something wrong with the technical settings (e.g. wrong system number, wrong IP address).&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>Fri, 28 Nov 2008 04:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840575#M1132389</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-11-28T04:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to test a RFC ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840576#M1132390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santoshi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you check this link? Hope it will be helpful for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/be/6e0f41218ff023e10000000a155106/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/be/6e0f41218ff023e10000000a155106/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 06:42:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840576#M1132390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T06:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to test a RFC ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840577#M1132391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks...i got it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 09:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-a-rfc/m-p/4840577#M1132391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T09:32:55Z</dc:date>
    </item>
  </channel>
</rss>

