<?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: Function Module Failing in Run Time in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953546#M696599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soniya,&lt;/P&gt;&lt;P&gt;Just tell one thing what is the name of your FM&lt;/P&gt;&lt;P&gt;Is it Z_CUSTOMER or Z_CUSTOMERB. Just delete the one from the system which you are not using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Oct 2007 15:28:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-17T15:28:00Z</dc:date>
    <item>
      <title>Function Module Failing in Run Time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953543#M696596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friend. Thanks to SDN to get this FM created , but still i have some more issues.  I copied the function module RSAX_BIW_GET_DATA_SIMPLE using SE80 TO Z_CUSTOMERB and also the Function Group I copied from RSAX TO ZCUSTB in SE80 ABAP area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Error in SE80 FOR Function Group ZCUSTB: Main program Z_CUSTOMERB does not begin with Function-Pool &lt;/P&gt;&lt;P&gt;please edit my code and let me know how to fix the code to include FUNCTION-POOL&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;But when i go to se37 Activated the FM Z_CUSTOMER and check for any syntax error in FM source code it give no error. But when i run the function module using my datasource rsa3 or execute FM then i get the dump&lt;/P&gt;&lt;P&gt;dump reasons stated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. FM Z_CUSTOMER is not active and hence cannot be found during run time&lt;/P&gt;&lt;P&gt;2. Function Library contains incorrect entry for Z_CUSTOMERB&lt;/P&gt;&lt;P&gt;3. Function Module contains no Code even the FUNCTION ... ENDFUNCTION Missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked the code and no errors. Please suggest what should I change in FM Setting to fix the error. where is the function library&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please revise my code to make it work its very simple logic to populate the custom table se11 ZBW_SFLI001_DS to get the data fields from KNA1 and then fetch other fields from KNB1 where KNA1-KUNNR = KNB1 KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function Module Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION Z_CUSTOMERB.&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(I_REQUNR) TYPE SRSC_S_IF_SIMPLE-REQUNR OPTIONAL&lt;/P&gt;&lt;P&gt;*" VALUE(I_DSOURCE) TYPE SRSC_S_IF_SIMPLE-DSOURCE OPTIONAL&lt;/P&gt;&lt;P&gt;*" VALUE(I_MAXSIZE) TYPE SRSC_S_IF_SIMPLE-MAXSIZE OPTIONAL&lt;/P&gt;&lt;P&gt;*" VALUE(I_INITFLAG) TYPE SRSC_S_IF_SIMPLE-INITFLAG OPTIONAL&lt;/P&gt;&lt;P&gt;*" VALUE(I_READ_ONLY) TYPE SRSC_S_IF_SIMPLE-READONLY OPTIONAL&lt;/P&gt;&lt;P&gt;*" VALUE(I_REMOTE_CALL) TYPE SBIWA_FLAG DEFAULT SBIWA_C_FLAG_OFF&lt;/P&gt;&lt;P&gt;*" TABLES&lt;/P&gt;&lt;P&gt;*" I_T_SELECT TYPE SRSC_S_IF_SIMPLE-T_SELECT OPTIONAL&lt;/P&gt;&lt;P&gt;*" I_T_FIELDS TYPE SRSC_S_IF_SIMPLE-T_FIELDS OPTIONAL&lt;/P&gt;&lt;P&gt;*" E_T_DATA STRUCTURE ZBW_SFLI001_DS OPTIONAL&lt;/P&gt;&lt;P&gt;*" EXCEPTIONS&lt;/P&gt;&lt;P&gt;*" NO_MORE_DATA&lt;/P&gt;&lt;P&gt;*" ERROR_PASSED_TO_MESS_HANDLER&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: KNA1, KNB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: L_S_SELECT TYPE SRSC_S_SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STATICS: S_S_IF TYPE SRSC_S_IF_SIMPLE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_COUNTER_DATAPAKID LIKE SY-TABIX,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_CURSOR TYPE CURSOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: l_r_zcalweek FOR ZBW_SFLI001_DS-ZCALWEEK,&lt;/P&gt;&lt;P&gt;l_r_ZKUNNR FOR ZBW_SFLI001_DS-ZKUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: l_r_ERDAT FOR KNA1-ERDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: zweek LIKE ZBW_SFLI001_DS-ZCALWEEK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ZKNA1 LIKE KNA1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ZKNB1 LIKE KNB1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: zitab LIKE ZBW_SFLI001_DS OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF I_INITFLAG = SBIWA_C_FLAG_ON. &lt;/P&gt;&lt;P&gt;CASE I_DSOURCE.&lt;/P&gt;&lt;P&gt;WHEN 'ZBW_SFLI001_DS'.&lt;/P&gt;&lt;P&gt;WHEN OTHERS.&lt;/P&gt;&lt;P&gt;IF 1 = 2. MESSAGE E009(R3). ENDIF.&lt;/P&gt;&lt;P&gt;LOG_WRITE 'E' "message type&lt;/P&gt;&lt;P&gt;'R3' "message class&lt;/P&gt;&lt;P&gt;'009' "message number&lt;/P&gt;&lt;P&gt;I_DSOURCE "message variable 1&lt;/P&gt;&lt;P&gt;' '. "message variable 2&lt;/P&gt;&lt;P&gt;RAISE ERROR_PASSED_TO_MESS_HANDLER.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND LINES OF I_T_SELECT TO s_s_if-t_select. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_s_if-requnr = I_REQUNR. "Step (B)&lt;/P&gt;&lt;P&gt;s_s_if-dsource = I_DSOURCE. "Step (B)&lt;/P&gt;&lt;P&gt;s_s_if-maxsize = I_MAXSIZE. "Step (B)&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;APPEND LINES OF I_T_FIELDS TO s_s_if-t_fields. "Step (B)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE. "Initialization mode or data extraction ?&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF s_counter_datapakid = 0. "Step (C)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Begin of Step (D)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT s_s_if-t_select INTO l_s_select WHERE FIELDNM = 'ZCALWEEK'.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING l_s_select TO l_r_zcalweek.&lt;/P&gt;&lt;P&gt;APPEND l_r_zcalweek.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT s_s_if-t_select INTO l_s_select WHERE FIELDNM = 'ZKUNNR'.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING l_s_select TO l_r_ZKUNNR.&lt;/P&gt;&lt;P&gt;APPEND l_r_ZKUNNR.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT l_r_zcalweek.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE l_r_zcalweek-option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'EQ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WEEK_GET_FIRST_DAY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;WEEK = l_r_zcalweek-low&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;DATE = l_r_ERDAT-low&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;WEEK_INVALID = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_r_ERDAT-high = l_r_ERDAT-low + 7.&lt;/P&gt;&lt;P&gt;l_r_ERDAT-sign = 'I'.&lt;/P&gt;&lt;P&gt;l_r_ERDAT-option = 'BT'.&lt;/P&gt;&lt;P&gt;APPEND l_r_ERDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'BT'.&lt;/P&gt;&lt;P&gt;zweek = l_r_zcalweek-low.&lt;/P&gt;&lt;P&gt;WHILE zweek &amp;lt;= l_r_zcalweek-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WEEK_GET_FIRST_DAY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;WEEK = zweek&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;DATE = l_r_ERDAT-low&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;WEEK_INVALID = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_r_ERDAT-high = l_r_ERDAT-low + 7.&lt;/P&gt;&lt;P&gt;l_r_ERDAT-sign = 'I'.&lt;/P&gt;&lt;P&gt;l_r_ERDAT-option = 'BT'.&lt;/P&gt;&lt;P&gt;APPEND l_r_ERDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zweek = zweek + 1.&lt;/P&gt;&lt;P&gt;ENDWHILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE FROM ZBW_SFLI001_DS "Step (E)&lt;/P&gt;&lt;P&gt;WHERE ZREQUNR = s_s_if-requnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM KNA1 "Step (F)&lt;/P&gt;&lt;P&gt;INTO TABLE ZKNA1&lt;/P&gt;&lt;P&gt;WHERE ERDAT IN l_r_ERDAT&lt;/P&gt;&lt;P&gt;AND KUNNR IN l_r_ZKUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM KNB1 "Step (F)&lt;/P&gt;&lt;P&gt;INTO TABLE ZKNB1&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN ZKNA1&lt;/P&gt;&lt;P&gt;WHERE KUNNR = ZKNA1-KUNNR&lt;/P&gt;&lt;P&gt;AND ERDAT = ZKNA1-ERDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ZKNA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zitab-zrequnr = s_s_if-requnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DATE_GET_WEEK'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;DATE = ZKNA1-ERDAT&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;WEEK = zitab-zcalweek&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;DATE_INVALID = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zitab-ZKUNNR = ZKNA1-KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zitab-ZREGIO = ZKNA1-REGIO.&lt;/P&gt;&lt;P&gt;zitab-ZFAKSD = ZKNA1-FAKSD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE ZKNB1 WITH KEY KUNNR = ZKNA1-KUNNR&lt;/P&gt;&lt;P&gt;ERDAT = zKNA1-ERDAT.&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;zitab-ZZTERM = ZKNB1-ZTERM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;zitab-ZZTERM = 'NULL'.&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;&lt;/P&gt;&lt;P&gt;zitab-ZAKONT = ZKNB1-AKONT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT ZBW_SFLI001_DS FROM TABLE zitab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN CURSOR WITH HOLD s_cursor FOR "Step (I)&lt;/P&gt;&lt;P&gt;SELECT (S_S_IF-T_FIELDS) FROM ZBW_SFLI001_DS&lt;/P&gt;&lt;P&gt;WHERE zrequnr = s_s_if-requnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;FETCH NEXT CURSOR s_cursor "Step (J)&lt;/P&gt;&lt;P&gt;APPENDING CORRESPONDING FIELDS&lt;/P&gt;&lt;P&gt;OF TABLE E_T_DATA&lt;/P&gt;&lt;P&gt;PACKAGE SIZE S_S_IF-MAXSIZE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0. "Step (K)&lt;/P&gt;&lt;P&gt;CLOSE CURSOR S_CURSOR. "Step (L)&lt;/P&gt;&lt;P&gt;DELETE FROM zbw_sfli001_ds "Step (M)&lt;/P&gt;&lt;P&gt;WHERE zrequnr = s_s_if-requnr.&lt;/P&gt;&lt;P&gt;RAISE NO_MORE_DATA. "Step (N)&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_counter_datapakid = s_counter_datapakid + 1. "Step (O)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 15:13:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953543#M696596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T15:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module Failing in Run Time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953544#M696597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soniya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think you have not checked my reply to your query in another thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 15:16:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953544#M696597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T15:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module Failing in Run Time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953545#M696598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please edit my code so that i understand this for this time and i can create that in future.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MY original FM is RSAX_BIW_GET_DATA_SIMPLE and I want the copy of this . it is simple. but if u can copy it and send me the code and steps then i will repeat the same thing that I learned from you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Soniya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 15:24:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953545#M696598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T15:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module Failing in Run Time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953546#M696599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Soniya,&lt;/P&gt;&lt;P&gt;Just tell one thing what is the name of your FM&lt;/P&gt;&lt;P&gt;Is it Z_CUSTOMER or Z_CUSTOMERB. Just delete the one from the system which you are not using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 15:28:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953546#M696599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T15:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module Failing in Run Time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953547#M696600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Z_CUSTOMERB is the name of FM . i deleted the other one Z_CUSTOMER but still not working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 21:25:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953547#M696600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T21:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module Failing in Run Time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953548#M696601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the top include for the function group, ensure that the first line is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION-POOL Z_MY_GROUP. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Z_MY_GROUP is the actual name of the actual function group that your actual function module belongs to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 21:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-failing-in-run-time/m-p/2953548#M696601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T21:56:14Z</dc:date>
    </item>
  </channel>
</rss>

