<?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 function module call with destination in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732265#M1300103</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;how can check if a function module call with destination works or not ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I debug. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can be the reason if it is not calles &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jun 2009 16:51:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-09T16:51:06Z</dc:date>
    <item>
      <title>function module call with destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732265#M1300103</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;how can check if a function module call with destination works or not ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I debug. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can be the reason if it is not calles &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 16:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732265#M1300103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T16:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: function module call with destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732266#M1300104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
* to chcek the rfc Destination By pass RFC destination name and Connection Type..
RFC_CHECK_DESTINATION
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
RFC_CHECK_DESTINATION_ID
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this FM RFC_VERIFY_DESTINATION if your release is greater than 4.6C. &lt;/P&gt;&lt;P&gt;Check this sample code from Craig Cmehil's weblog.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

CALL FUNCTION 'RFC_VERIFY_DESTINATION'
  EXPORTING
    DESTINATION = TMP
        TIMEOUT = 10
  EXCEPTIONS
    INTERNAL_FAILURE           = 1
    TIMEOUT                    = 2
    DEST_COMMUNICATION_FAILURE = 3
    DEST_SYSTEM_FAILURE        = 4
    UPDATE_FAILURE             = 5
    NO_UPDATE_AUTHORITY        = 6
    OTHERS                     = 7.
 
  IF SY-SUBRC EQ '0'.
    "* Do code here
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 16:57:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732266#M1300104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T16:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: function module call with destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732267#M1300105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;To debug go to transaction se37. After displaying your FM go to source code tab and in the code place a session break point.&lt;/P&gt;&lt;P&gt;When the FM will be called from your code you can see whats the issue in FM.&lt;/P&gt;&lt;P&gt;Hope it  helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ibrar Munsif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 06:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732267#M1300105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T06:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: function module call with destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732268#M1300106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai ilhan&lt;/P&gt;&lt;P&gt;just chekc the function module u have called exists in target system&lt;/P&gt;&lt;P&gt;and check paramters are proper and check the rfc destination in sm59 wether it is workign properly&lt;/P&gt;&lt;P&gt;m.a&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 07:05:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732268#M1300106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T07:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: function module call with destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732269#M1300107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can I debug such a Function Module call (it has  Destination additional ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 11:32:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732269#M1300107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T11:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: function module call with destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732270#M1300108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i hve replied it in ur previous thread&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 11:33:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732270#M1300108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T11:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: function module call with destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732271#M1300109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Malik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this way didn' t work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it necessary to have an special user (RFC User ???)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;in se38 goto utilites &lt;/P&gt;&lt;P&gt;&amp;gt;settings -&amp;gt;debugging then in the field user give the id by which you are logging in your srm application &lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;gt;Then in se38 wherever you want to put a break point press ctrl shift f9 to set a external breakpoint &lt;/P&gt;&lt;P&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;gt;Then run your srm application with the same user id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Julius Bussche on Jun 13, 2009 8:38 AM&lt;/P&gt;&lt;P&gt;Code tags replaced by quotes to fix formatting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 12:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732271#M1300109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T12:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: function module call with destination</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732272#M1300110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, the RFC user entered in SM59 will need authority for display debugging (S_DEVELOP object type DEBUG) and the user type will need to be capable of attaching a SAPGui to the session (user type = SERVICE).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the procedure and constraints, type "debugging single-step" into the OSS search. The first 3 notes are the ones you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;905364 Authorizations for single step debugging of RFCs&lt;/P&gt;&lt;P&gt;300208 Single step debugging of RFC calls&lt;/P&gt;&lt;P&gt;1328076 Single-step debugging of a synchronous RFC from HTTP session &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it still does not work, then debugging might have been disabled at the system level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Jun 2009 06:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-call-with-destination/m-p/5732272#M1300110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-13T06:38:42Z</dc:date>
    </item>
  </channel>
</rss>

