<?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 QRFC FM does not work in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936095#M1600181</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="13" __jive_macro_name="size"&gt;
Dear All exports,
I built a remote-Enabled Fm  'ZIWS_PO_STOPCHANGE_UPDATE' ,to update the po confirmation with BDC,
Step  A,I call the Fm in normal way, it is ok, i can update the po confirmation.
&lt;PRE&gt;&lt;CODE&gt;
    CALL FUNCTION 'SWW_WIM_RFC_DESTINATION_GET'
      IMPORTING
        WORKFLOW_DESTINATION       = l_rfcdest.
*   Update Po confirmation
    CALL FUNCTION 'ZIWS_PO_STOPCHANGE_UPDATE'
      TABLES
        i_data        = I_DATA.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE&gt;
STEP 2. when i call the FM in remote module , it did not work.
    CALL FUNCTION 'SWW_WIM_RFC_DESTINATION_GET'
      IMPORTING
        WORKFLOW_DESTINATION       = l_rfcdest.
*   Update NC
    CALL FUNCTION 'ZIWS_PO_STOPCHANGE_UPDATE'
      IN BACKGROUND TASK AS SEPARATE UNIT
      DESTINATION l_rfcdest
      TABLES
        i_data        = I_DATA.
&lt;/CODE&gt;&lt;/PRE&gt;

We need to call the FM in the second way ,Pleae advise suggestion , thanks.
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Jun 2011 03:07:34 GMT</pubDate>
    <dc:creator>former_member447033</dc:creator>
    <dc:date>2011-06-02T03:07:34Z</dc:date>
    <item>
      <title>QRFC FM does not work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936095#M1600181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="13" __jive_macro_name="size"&gt;
Dear All exports,
I built a remote-Enabled Fm  'ZIWS_PO_STOPCHANGE_UPDATE' ,to update the po confirmation with BDC,
Step  A,I call the Fm in normal way, it is ok, i can update the po confirmation.
&lt;PRE&gt;&lt;CODE&gt;
    CALL FUNCTION 'SWW_WIM_RFC_DESTINATION_GET'
      IMPORTING
        WORKFLOW_DESTINATION       = l_rfcdest.
*   Update Po confirmation
    CALL FUNCTION 'ZIWS_PO_STOPCHANGE_UPDATE'
      TABLES
        i_data        = I_DATA.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE&gt;
STEP 2. when i call the FM in remote module , it did not work.
    CALL FUNCTION 'SWW_WIM_RFC_DESTINATION_GET'
      IMPORTING
        WORKFLOW_DESTINATION       = l_rfcdest.
*   Update NC
    CALL FUNCTION 'ZIWS_PO_STOPCHANGE_UPDATE'
      IN BACKGROUND TASK AS SEPARATE UNIT
      DESTINATION l_rfcdest
      TABLES
        i_data        = I_DATA.
&lt;/CODE&gt;&lt;/PRE&gt;

We need to call the FM in the second way ,Pleae advise suggestion , thanks.
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 03:07:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936095#M1600181</guid>
      <dc:creator>former_member447033</dc:creator>
      <dc:date>2011-06-02T03:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: QRFC FM does not work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936096#M1600182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi EricZhao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) I am not sure if you have a "COMMIT WORK" after the RFC call, if not please do so.&lt;/P&gt;&lt;P&gt;2) If after adding the "COMMIT WORK" you don't see the changes in the target system, go to Tcode SM58 and check if you have a log here for your RFC.&lt;/P&gt;&lt;P&gt;3) Also, since you are calling the FM as Separate unit, i presume that subsequent/preceding calls are independent of each other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: I say go to SM58 as i do not see the code with which you set the Queue, but in case you didn't paste it in the post, you need to look at SMQ1 Tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Chen K V on Jun 2, 2011 4:40 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 06:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936096#M1600182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-02T06:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: QRFC FM does not work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936097#M1600183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="14" __jive_macro_name="size"&gt;
Thanks all the same.      For the commit work , we use the FM in a user exit ,so we can  not use the commit work .
For the qRFC , i can only use  t-code SMQ1 find the queue ,but not SM58 .

Now seems the FM is working but have some buge , i can not debuge the queue with the debuge LUW command in 
SMQ1 , when I click debuge LUW , the screen output   ''Nothing was selected ' . 

I never change the code , but in the second call module , it face some issue .  and i can not debuge it.

Is there any diffrence between this two way when the program was runing ?
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2011 03:07:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936097#M1600183</guid>
      <dc:creator>former_member447033</dc:creator>
      <dc:date>2011-06-03T03:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: QRFC FM does not work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936098#M1600184</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;1. check the RFC destination which you are passng is working fine.&lt;/P&gt;&lt;P&gt;2. user used in the RFC destination is having the authorization to exeute the RFC function modukles.&lt;/P&gt;&lt;P&gt;3. if you are calling the FM from other system then check all the paramters you passed to the function module are passed by value only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2011 03:40:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936098#M1600184</guid>
      <dc:creator>nirajgadre</dc:creator>
      <dc:date>2011-06-03T03:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: QRFC FM does not work</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936099#M1600185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi EricZhao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you need to look at SMQ1,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now seems the FM is working but have some buge , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What makes you think there is a bug in the FM, do you see a failed entry in SMQ1? If so double click on the status tab and check the error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can not debuge the queue with the debuge LUW command in SMQ1 , when I click debuge LUW , the screen output ''Nothing was selected ' . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Are you selecting the corresponding entry before you click on debug LUW?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2011 09:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrfc-fm-does-not-work/m-p/7936099#M1600185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-03T09:37:14Z</dc:date>
    </item>
  </channel>
</rss>

