<?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: Error Function module &amp;quot; &amp;quot; not found in Smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124615#M445871</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;    This error occurs when the FM 'SSF_FUNCTION_MODULE_NAME' does not return the unique FM name. In the debugging, check if the FM name is returned from the FM 'SSF_FUNCTION_MODULE_NAME'. Check if the forms is activated in the required system or if the smartform has been renamed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Apr 2007 06:40:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-10T06:40:43Z</dc:date>
    <item>
      <title>Error Function module " " not found in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124613#M445869</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;Please help me out&amp;#133;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created the form using the smartforms, check it and activated it. I can see the unique function module is assigned to the form. I wrote the ABAP program and use function module &amp;#145;SSF_FUNCTION_MODULE_NAME&amp;#146;and also define data types.&lt;/P&gt;&lt;P&gt;when I called the function module fm_name for passing values and tables from program to smartform. This is working perfectly in development server but in production it giving error like Function module " " not found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below I m pasting my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZCASHJOURNAL                                                *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zcashjournal                            .&lt;/P&gt;&lt;P&gt;TABLES: bseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: FM_NAME TYPE rs38l_fnam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF it_bseg OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bseg.&lt;/P&gt;&lt;P&gt;DATA:END OF it_bseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF it_bseg1 OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bseg.&lt;/P&gt;&lt;P&gt;DATA:END OF it_bseg1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gv_amt_in_words TYPE spell,&lt;/P&gt;&lt;P&gt;      gv_word TYPE spell-word,&lt;/P&gt;&lt;P&gt;      gv_decword TYPE spell-decword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF gt_bkpf OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE bkpf.&lt;/P&gt;&lt;P&gt;DATA:END OF gt_bkpf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:bktxt TYPE bktxt.&lt;/P&gt;&lt;P&gt;DATA:waers TYPE waers.&lt;/P&gt;&lt;P&gt;DATA:belnr TYPE belnr_d.&lt;/P&gt;&lt;P&gt;DATA:werks TYPE bukrs.&lt;/P&gt;&lt;P&gt;DATA:desc  TYPE butxt.&lt;/P&gt;&lt;P&gt;DATA:awkey TYPE awkey.&lt;/P&gt;&lt;P&gt;DATA:docno TYPE matnr.&lt;/P&gt;&lt;P&gt;DATA:cajo  TYPE awkey.&lt;/P&gt;&lt;P&gt;DATA:desc1 TYPE butxt.&lt;/P&gt;&lt;P&gt;DATA:dmbtr TYPE dmbtr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT (15) FOR FIELD s_belnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 28 .&lt;/P&gt;&lt;P&gt;  PARAMETERS : s_belnr TYPE bseg-belnr .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN COMMENT (15) FOR FIELD s_werks.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN POSITION 28 .&lt;/P&gt;&lt;P&gt;      PARAMETERS: s_werks TYPE werks.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM bkpf&lt;/P&gt;&lt;P&gt;           INTO CORRESPONDING FIELDS OF TABLE gt_bkpf&lt;/P&gt;&lt;P&gt;          WHERE belnr LIKE s_belnr&lt;/P&gt;&lt;P&gt;          AND   bukrs LIKE s_werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT gt_bkpf[] IS INITIAL.&lt;/P&gt;&lt;P&gt;  SELECT * FROM bseg&lt;/P&gt;&lt;P&gt;      INTO CORRESPONDING FIELDS OF TABLE it_bseg&lt;/P&gt;&lt;P&gt;      FOR ALL ENTRIES IN gt_bkpf&lt;/P&gt;&lt;P&gt;      WHERE bukrs EQ gt_bkpf-bukrs&lt;/P&gt;&lt;P&gt;      AND   belnr EQ gt_bkpf-belnr&lt;/P&gt;&lt;P&gt;      AND   shkzg EQ 'S'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT gt_bkpf.&lt;/P&gt;&lt;P&gt;  bktxt = gt_bkpf-bktxt.&lt;/P&gt;&lt;P&gt;  waers = gt_bkpf-waers.&lt;/P&gt;&lt;P&gt;  belnr = gt_bkpf-belnr.&lt;/P&gt;&lt;P&gt;  werks = gt_bkpf-bukrs.&lt;/P&gt;&lt;P&gt;  awkey = gt_bkpf-awkey.&lt;/P&gt;&lt;P&gt;  docno = awkey+0(10).&lt;/P&gt;&lt;P&gt;  cajo = awkey+10(4).&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_bseg.&lt;/P&gt;&lt;P&gt;  dmbtr = it_bseg-dmbtr.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF s_werks EQ '65'.&lt;/P&gt;&lt;P&gt;  desc = 'JCBML - Heavy Equipments'.&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;IF cajo EQ '0001'.&lt;/P&gt;&lt;P&gt;  desc1 = 'PETTY CASH PLANT II'.&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;CALL FUNCTION 'SPELL_AMOUNT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    amount    = dmbtr&lt;/P&gt;&lt;P&gt;    currency  = waers&lt;/P&gt;&lt;P&gt;    filler    = space&lt;/P&gt;&lt;P&gt;    language  = sy-langu&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    in_words  = gv_amt_in_words&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    not_found = 1&lt;/P&gt;&lt;P&gt;    too_large = 2&lt;/P&gt;&lt;P&gt;    OTHERS    = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;  MOVE : gv_amt_in_words-word TO gv_word,&lt;/P&gt;&lt;P&gt;         gv_amt_in_words-decword TO gv_decword.&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;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    formname                 = 'ZCASHRECPT'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   FM_NAME                  = FM_NAME&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NO_FORM                  = 1&lt;/P&gt;&lt;P&gt;   NO_FUNCTION_MODULE       = 2&lt;/P&gt;&lt;P&gt;   OTHERS                   = 3&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        EXPORTING  formname           = 'ZCASHRECPT'&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;                variant            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;                direct_call        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        IMPORTING  fm_name            = lf_fm_name&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        EXCEPTIONS no_form            = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                   no_function_module = 2.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*v_vbeln = S_VBELN-low.&lt;/P&gt;&lt;P&gt;CALL FUNCTION FM_NAME&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    bktxt            = bktxt&lt;/P&gt;&lt;P&gt;    waers            = waers&lt;/P&gt;&lt;P&gt;    belnr            = belnr&lt;/P&gt;&lt;P&gt;    werks            = werks&lt;/P&gt;&lt;P&gt;    desc             = desc&lt;/P&gt;&lt;P&gt;    docno            = docno&lt;/P&gt;&lt;P&gt;    cajo             = cajo&lt;/P&gt;&lt;P&gt;    desc1            = desc1&lt;/P&gt;&lt;P&gt;    dmbtr            = dmbtr&lt;/P&gt;&lt;P&gt;    gv_word          = gv_word&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    T_ZDEB           = it_bseg&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    formatting_error = 1&lt;/P&gt;&lt;P&gt;    internal_error   = 2&lt;/P&gt;&lt;P&gt;    send_error       = 3&lt;/P&gt;&lt;P&gt;    user_canceled    = 4&lt;/P&gt;&lt;P&gt;    OTHERS           = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 06:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124613#M445869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T06:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error Function module " " not found in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124614#M445870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the following:&lt;/P&gt;&lt;P&gt;Has the activated SMARTFORM transported to PRDUCTION correctly from DEV.&lt;/P&gt;&lt;P&gt;Check it. May not be transported to PRD with all the relavent Texts etc, check whether it is active in PRD.&lt;/P&gt;&lt;P&gt;Because once the smartform is active, then this error should not occur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ANJI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 06:35:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124614#M445870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T06:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error Function module " " not found in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124615#M445871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;    This error occurs when the FM 'SSF_FUNCTION_MODULE_NAME' does not return the unique FM name. In the debugging, check if the FM name is returned from the FM 'SSF_FUNCTION_MODULE_NAME'. Check if the forms is activated in the required system or if the smartform has been renamed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 06:40:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124615#M445871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T06:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: Error Function module " " not found in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124616#M445872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            Its only the request confusion . check that whether u have stored the print program also in the same request as the smartform . goto se09 just check out whether all objects  are found in the request . may be this problem .  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    regards,&lt;/P&gt;&lt;P&gt;     magesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 06:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124616#M445872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T06:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Error Function module " " not found in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124617#M445873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check two things &lt;/P&gt;&lt;P&gt;1. Program tranpsorted to production without any error in request log.&lt;/P&gt;&lt;P&gt;2. Smartform tranpsorted to production without any error in request log and without renaming / misspelling it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = 'ZCASHRECPT'
IMPORTING
FM_NAME = FM_NAME
EXCEPTIONS
NO_FORM = 1
NO_FUNCTION_MODULE = 2
OTHERS = 3
.
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also try to uncomment the Message id part and it will show some meaningful message. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And to check whether actaually fucntion module is generated or not goto smartforms -&amp;gt;Smartform name -&amp;gt; Display -&amp;gt; Environment-&amp;gt;Fucntion module name . if this is blank try to retransport smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kapadia&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;Assigning points is the way to say thanks in SDN.&lt;/STRONG&gt;***&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 07:28:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124617#M445873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T07:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Error Function module " " not found in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124618#M445874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you are right FM 'SSF_FUNCTION_MODULE_NAME' does not return the unique FM name.i checked form is activated.what else i need to check..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Rakesh...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 07:35:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124618#M445874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T07:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error Function module " " not found in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124619#M445875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;    In this case, i would check for the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Check if the smartform name is 'ZCASHRECPT' and has not been renamed.&lt;/P&gt;&lt;P&gt;2) Check if the form is active in the system&lt;/P&gt;&lt;P&gt;3) Execute the FM SSF_FUNCTION_MODULE_NAME in SE37 providing the &lt;/P&gt;&lt;P&gt;    same inputs and check if the result is returned.&lt;/P&gt;&lt;P&gt;3) Ask a colleague to review it as i can assume and overlook the program   &lt;/P&gt;&lt;P&gt;   sometimes&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;     There should be a very minor issue which is being overlooked. &lt;/P&gt;&lt;P&gt;     Also, Uncomment the exceptions to get the actual error.&lt;/P&gt;&lt;P&gt;     Please do let me know when the issue is resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 00:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124619#M445875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T00:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error Function module " " not found in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124620#M445876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;    Also, you can execute the Smartform 'ZCASHRECPT' and get the FM name.&lt;/P&gt;&lt;P&gt;    Hard code this FM name in your program and check if the program executes &lt;/P&gt;&lt;P&gt;    perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 00:50:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-function-module-quot-quot-not-found-in-smartforms/m-p/2124620#M445876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T00:50:44Z</dc:date>
    </item>
  </channel>
</rss>

