<?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: RFC enabled function module is not runing the BDC code in it. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330023#M797741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check whether you have enabled the  Remote-enabled module option in your Func Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This option will be in Attributes tab under the heading Processing type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jan 2008 13:03:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-24T13:03:05Z</dc:date>
    <item>
      <title>RFC enabled function module is not runing the BDC code in it.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330022#M797740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. We have created a RFC enabled function module to change status of a activity and to save it we are using BDC code and we have also put the code in the RFC FM only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The RFC fm is runing fine and changing the data and also saving it by runing the BDC when run in the R/3 system only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i run the FM from portal its just chaning the status but not runing the BDC code in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;below i am puting the code of the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION ZRFC_CRM_STATUS_CHANGE_EXTERN .&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local Interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     VALUE(CHECK_ONLY) TYPE  XFELD DEFAULT ' '&lt;/P&gt;&lt;P&gt;*"     VALUE(CLIENT) LIKE  SY-MANDT DEFAULT SY-MANDT&lt;/P&gt;&lt;P&gt;*"     VALUE(OBJNR) TYPE  CRM_JSTO-OBJNR OPTIONAL&lt;/P&gt;&lt;P&gt;*"     VALUE(USER_STATUS) LIKE  CRM_JEST-STAT&lt;/P&gt;&lt;P&gt;*"     VALUE(SET_INACT) TYPE  XFELD DEFAULT ' '&lt;/P&gt;&lt;P&gt;*"     VALUE(SET_CHGKZ) LIKE  CRM_JSTO-CHGKZ OPTIONAL&lt;/P&gt;&lt;P&gt;*"     VALUE(XNOAUTO) LIKE  CRM_JSTO_UPD-XNOAUTO OPTIONAL&lt;/P&gt;&lt;P&gt;*"     VALUE(NO_CHECK) TYPE  XFELD DEFAULT ' '&lt;/P&gt;&lt;P&gt;*"     VALUE(ZOBJNR) TYPE  CHAR80&lt;/P&gt;&lt;P&gt;*"     VALUE(OBJECT_ID) TYPE  CRMT_OBJECT_ID&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     VALUE(STONR) LIKE  TJ30-STONR&lt;/P&gt;&lt;P&gt;*"  EXCEPTIONS&lt;/P&gt;&lt;P&gt;*"      OBJECT_NOT_FOUND&lt;/P&gt;&lt;P&gt;*"      STATUS_INCONSISTENT&lt;/P&gt;&lt;P&gt;*"      STATUS_NOT_ALLOWED&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*{   INSERT         D60K900707                                        1&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF JSTAT_TMP.&lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE JSTAT.&lt;/P&gt;&lt;P&gt;  DATA: END OF JSTAT_TMP.&lt;/P&gt;&lt;P&gt;  data: bdcdata like bdcdata  occurs 0 with header line.&lt;/P&gt;&lt;P&gt;  data: dire type CRMD_ACTIVITY_H-direction.&lt;/P&gt;&lt;P&gt;  CLEAR: DIRE.&lt;/P&gt;&lt;P&gt;OBJNR = ZOBJNR.&lt;/P&gt;&lt;P&gt;  MANDT = CLIENT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  JSTAT_TMP-STAT  = USER_STATUS.&lt;/P&gt;&lt;P&gt;  JSTAT_TMP-INACT = SET_INACT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF USER_STATUS+0(1) NE EXTERN.&lt;/P&gt;&lt;P&gt;    RAISE STATUS_NOT_ALLOWED.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Statusobjekt ggf. einlesen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM STATUS_READ USING OBJNR IOBTYP ISTSMA NOT_FOUND.&lt;/P&gt;&lt;P&gt;  CHECK NOT_FOUND = OFF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ggf. Änderungsbelege aktivieren&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF SET_CHGKZ = 'X' AND JSTO_BUF-CHGKZ = SPACE AND CHECK_ONLY = SPACE.&lt;/P&gt;&lt;P&gt;    PERFORM SET_CHGKZ USING OBJNR.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;set XNOAUTO-flag if desired&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF XNOAUTO = 'X' AND CHECK_ONLY = SPACE.&lt;/P&gt;&lt;P&gt;    PERFORM SET_XNOAUTO USING OBJNR.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  crm_jostd-OBJNR = OBJNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Status-Puffer füllen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  REFRESH JEST_BUF_A.&lt;/P&gt;&lt;P&gt;  REFRESH JEST_BUF_E.&lt;/P&gt;&lt;P&gt;  CLEAR   JEST_BUF_A.&lt;/P&gt;&lt;P&gt;  CLEAR   JEST_BUF_E.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR JEST_K.&lt;/P&gt;&lt;P&gt;  MOVE MANDT       TO JEST_K-MANDT.&lt;/P&gt;&lt;P&gt;  MOVE crm_jostd-OBJNR TO JEST_K-OBJNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE JEST_BUF WITH KEY JEST_K BINARY SEARCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC IS INITIAL.&lt;/P&gt;&lt;P&gt;    TABIX = SY-TABIX.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING JEST_BUF TO JEST_BUF_E.&lt;/P&gt;&lt;P&gt;    APPEND JEST_BUF_E.&lt;/P&gt;&lt;P&gt;    MOVE-CORRESPONDING JEST_BUF TO JEST_BUF_A.&lt;/P&gt;&lt;P&gt;    MOVE MANDT TO JEST_BUF_A-MANDT.&lt;/P&gt;&lt;P&gt;    APPEND JEST_BUF_A.&lt;/P&gt;&lt;P&gt;    DO.&lt;/P&gt;&lt;P&gt;      ADD 1 TO TABIX.&lt;/P&gt;&lt;P&gt;      READ TABLE JEST_BUF INDEX TABIX.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC IS INITIAL AND JEST_BUF-OBJNR = crm_jostd-OBJNR.&lt;/P&gt;&lt;P&gt;        MOVE-CORRESPONDING JEST_BUF TO JEST_BUF_E.&lt;/P&gt;&lt;P&gt;        APPEND JEST_BUF_E.&lt;/P&gt;&lt;P&gt;        MOVE-CORRESPONDING JEST_BUF TO JEST_BUF_A.&lt;/P&gt;&lt;P&gt;        MOVE MANDT TO JEST_BUF_A-MANDT.&lt;/P&gt;&lt;P&gt;        APPEND JEST_BUF_A.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDDO.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  g_no_check = no_check.&lt;/P&gt;&lt;P&gt;  OBJNR = ZOBJNR.&lt;/P&gt;&lt;P&gt;  PERFORM STATUS_CHANGE_EXTERN USING CHECK_ONLY&lt;/P&gt;&lt;P&gt;                                     OBJNR&lt;/P&gt;&lt;P&gt;                                     JSTAT_TMP&lt;/P&gt;&lt;P&gt;                                     EXTERN.&lt;/P&gt;&lt;P&gt;  clear g_no_check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Zurückschreiben in Puffer&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM CHG_JEST_BUF_E.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ggf. Statusordnungsnummer ermitteln&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF STONR IS REQUESTED.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CRM_STATUS_READ'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              OBJNR       = OBJNR&lt;/P&gt;&lt;P&gt;              ONLY_ACTIVE = 'X'&lt;/P&gt;&lt;P&gt;         IMPORTING&lt;/P&gt;&lt;P&gt;              STONR       = STONR.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   WAIT          = 'X'&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  RETURN        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;*COMMIT WORK.&lt;/P&gt;&lt;P&gt;wait up to 10 seconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-program  = 'SAPLCRM_1O_MANAG_UI'.&lt;/P&gt;&lt;P&gt;  bdcdata-dynpro   = '0100'.&lt;/P&gt;&lt;P&gt;  bdcdata-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-fnam = 'BDC_OKCODE'.&lt;/P&gt;&lt;P&gt;  bdcdata-fval = '=READ'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-program  = 'SAPLCRM_1O_MANAG_UI'.&lt;/P&gt;&lt;P&gt;  bdcdata-dynpro   = '0510'.&lt;/P&gt;&lt;P&gt;  bdcdata-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-fnam = 'BDC_CURSOR'.&lt;/P&gt;&lt;P&gt;  bdcdata-fval = 'GV_OBJECT_ID'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-fnam = 'GV_OBJECT_ID'.&lt;/P&gt;&lt;P&gt;  bdcdata-fval = OBJECT_ID.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-fnam = 'BDC_OKCODE'.&lt;/P&gt;&lt;P&gt;  bdcdata-fval = '=OKAY'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-program  = 'SAPLCRM_1O_MANAG_UI'.&lt;/P&gt;&lt;P&gt;  bdcdata-dynpro   = '0100'.&lt;/P&gt;&lt;P&gt;  bdcdata-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-fnam = 'BDC_OKCODE'.&lt;/P&gt;&lt;P&gt;  bdcdata-fval = '=1OMAIN_TT'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-program  = 'SAPLCRM_1O_MANAG_UI'.&lt;/P&gt;&lt;P&gt;  bdcdata-dynpro   = '0100'.&lt;/P&gt;&lt;P&gt;  bdcdata-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-fnam = 'BDC_CURSOR'.&lt;/P&gt;&lt;P&gt;  bdcdata-fval = 'CRMT_7010_ACTIVITY_UI-DIRECTION'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single direction from CRMD_ACTIVITY_H into dire&lt;/P&gt;&lt;P&gt;                              where  guid = objnr.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    if dire = '0'.&lt;/P&gt;&lt;P&gt;      dire = '1'.&lt;/P&gt;&lt;P&gt;    elseif dire = '1'.&lt;/P&gt;&lt;P&gt;     dire = ''.&lt;/P&gt;&lt;P&gt;   elseif dire is initial.&lt;/P&gt;&lt;P&gt;     dire = '1'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-fnam = 'CRMT_7010_ACTIVITY_UI-DIRECTION'.&lt;/P&gt;&lt;P&gt;  bdcdata-fVAL = DIRE.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR bdcdata.&lt;/P&gt;&lt;P&gt;  bdcdata-fnam = 'BDC_OKCODE'.&lt;/P&gt;&lt;P&gt;  bdcdata-fval = '=SAVE'.&lt;/P&gt;&lt;P&gt;  APPEND bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'CRMD_BUS2000126'  using bdcdata mode 'N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   WAIT          = 'X'&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  RETURN        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;*COMMIT WORK.&lt;/P&gt;&lt;P&gt;wait up to 5 seconds.&lt;/P&gt;&lt;P&gt;*}   INSERT&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&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;Thanks and regards&lt;/P&gt;&lt;P&gt;Neel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 12:54:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330022#M797740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T12:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: RFC enabled function module is not runing the BDC code in it.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330023#M797741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check whether you have enabled the  Remote-enabled module option in your Func Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This option will be in Attributes tab under the heading Processing type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 13:03:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330023#M797741</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T13:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: RFC enabled function module is not runing the BDC code in it.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330024#M797742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try to use BAPI_ACTIVITYCRM_CHANGEMULTI ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CRMD_BUS2000126 is enjoy and uses controls, the batch session may fail.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 13:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330024#M797742</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-01-24T13:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: RFC enabled function module is not runing the BDC code in it.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330025#M797743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Already the FM is RFC enabled other i won't be able to call it from portal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and coming to using the BAPI_ACTIVITY CHANGE fm that acting very weird so we are using the CRM EXTERN CHANGE USER STATUS fm which is working fine but the only problem is even when we comit from BAPI_TRANSACTION_COMMIT its not getting the delta queue of BW updated eventhough its chaning the status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for the above reasons we are using the BDC code in the FM for pressing the save button then its will update the changes to BW delta queue as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its working fine when i run it from the system in tcode SE37 only the BDC code is not runing when i am doing it from portal apart from the fm is chaning the status .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;Neel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 13:15:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330025#M797743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T13:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: RFC enabled function module is not runing the BDC code in it.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330026#M797744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree, we had the same problem on other objects, the function module to change external status don't update the data beyond, only the status table (JEST, etc..) so we called the BAPI for status and a dummy BAPI_XXXX_CHANGE (without changing any field) just to insure update of change date and fill any data extraction queues. (via the Function modules started in update task in standard transaction or BAPI)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 13:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330026#M797744</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-01-24T13:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: RFC enabled function module is not runing the BDC code in it.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330027#M797745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes exactly my problem is that....so how can we proceed in this what is the dummy function module you used in CRM just to update the extraction queueus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i am right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first i will run the Custom function module to change the Status and then run the dummy fm so that i can update the extraction queues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you give me some step to step &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;Neel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 14:03:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330027#M797745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T14:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: RFC enabled function module is not runing the BDC code in it.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330028#M797746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You misunderstood me, i had the problem with another object, so the "dummy" BAPI i used wont be of interest for you. You have to fin such a BAPI for CRM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 12:14:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330028#M797746</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-01-30T12:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: RFC enabled function module is not runing the BDC code in it.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330029#M797747</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;I encounter the same problem. My FM can run successfully by Tcode SE37. But when I run it form my .NET program I encounter the following errors:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unable to initialise ABAP Control Framework ...&lt;/P&gt;&lt;P&gt;Control Framework: Fatal error - GUI cannot be reached&lt;/P&gt;&lt;P&gt;Runtime error RAISE_EXCEPTION has occurred&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to solve this problem? Please help me !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Dai Nguyen Quang,&lt;/P&gt;&lt;P&gt;THP Group.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jan 2016 04:50:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330029#M797747</guid>
      <dc:creator>former_member230535</dc:creator>
      <dc:date>2016-01-23T04:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: RFC enabled function module is not runing the BDC code in it.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330030#M797748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; I encounter the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;??&amp;nbsp; It rather looks like a &lt;STRONG&gt;completely different&lt;/STRONG&gt; problem to me than what has been discussed in this thread... Please open a new thread for this, instead of "resurrecting" this very old one...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Ulrich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jan 2016 09:38:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-is-not-runing-the-bdc-code-in-it/m-p/3330030#M797748</guid>
      <dc:creator>Ulrich_Schmidt1</dc:creator>
      <dc:date>2016-01-26T09:38:34Z</dc:date>
    </item>
  </channel>
</rss>

