<?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: ABAP error: CALL_FUNCTION_NOT_FOUND in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671794#M1289697</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;But wich name for fm are u using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The name is automatically generated by the system and it can change in every enviroment (dev, test and prod) or in the same enviroment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So u should run the fm to return the name of fm generated as soon as the smartform is activated:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: FM_NAME TYPE RS38L_FNAM,
      SF_NAME TYPE TDSFNAME. 

SF_NAME = &amp;lt;smartform name&amp;gt;.

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
           FORMNAME           = SF_NAME
      IMPORTING
           FM_NAME            = FM_NAME
      EXCEPTIONS
           NO_FORM            = 1
           NO_FUNCTION_MODULE = 2
           OTHERS             = 3.
IF SY-SUBRC &amp;lt;&amp;gt; 0.
* ----&amp;gt; No function
ELSE.
* Call smartform
 CALL FUNCTION FM_NAME
   ................ 
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Jun 2009 10:15:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-02T10:15:07Z</dc:date>
    <item>
      <title>ABAP error: CALL_FUNCTION_NOT_FOUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671787#M1289690</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;I am getting Message having CALL_FUNCTION_NOT_FOUND after saving my document in ME22N Tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message i am getting in my inbox:&lt;/P&gt;&lt;P&gt;Transaction.. ME22N&lt;/P&gt;&lt;P&gt;Update key... 80234FDE6D51F11C9004001A6435E8C6&lt;/P&gt;&lt;P&gt;Generated.... 02.06.2009, 05:15:29&lt;/P&gt;&lt;P&gt;Completed.... 02.06.2009, 05:15:31&lt;/P&gt;&lt;P&gt;Error Info... 00 671: ABAP/4 processor: CALL_FUNCTION_NOT_FOUND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one please tell what will be the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My out type also configured correctly with function module routine and program name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kusuma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 08:17:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671787#M1289690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T08:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP error: CALL_FUNCTION_NOT_FOUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671788#M1289691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer this link you will get some idea&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/scn/advancedsearch?query=call_function_not_found+&amp;amp;cat=sdn_all" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/advancedsearch?query=call_function_not_found+&amp;amp;cat=sdn_all&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 08:19:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671788#M1289691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T08:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP error: CALL_FUNCTION_NOT_FOUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671789#M1289692</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;Thank you for ur reply, I have seen all these before posting question here. No post is giving me solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kusuma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 09:33:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671789#M1289692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T09:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP error: CALL_FUNCTION_NOT_FOUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671790#M1289693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kusuma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chk this link,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/abapdocu/en/ABENNEWS-620-EXCEPTIONS.htm" target="test_blank"&gt;http://help.sap.com/abapdocu/en/ABENNEWS-620-EXCEPTIONS.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am actually working on it too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Revert for further clarification,.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Srikanth.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 09:34:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671790#M1289693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T09:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP error: CALL_FUNCTION_NOT_FOUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671791#M1289694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for ur reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please tell me what will be the problem here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In some other case document is saving in me22n tcode and giving processing log as my "form routine not found in the print program". But the same routine is there in my print program. I am unable to find out the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kusuma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 09:49:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671791#M1289694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T09:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP error: CALL_FUNCTION_NOT_FOUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671792#M1289695</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;try to check the dump by trx st22 or sm21, u should see where the dump occured and so which fm it tried to call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 09:55:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671792#M1289695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T09:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP error: CALL_FUNCTION_NOT_FOUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671793#M1289696</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;I have checked it already, It is saying that smartform function module( FM which will be generated from smartform) is found but it does not exist in SE37 library.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But smartform is getting printed through se38 tcode. Through out put type only it is giving all these errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kusuma K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 10:00:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671793#M1289696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T10:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP error: CALL_FUNCTION_NOT_FOUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671794#M1289697</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;But wich name for fm are u using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The name is automatically generated by the system and it can change in every enviroment (dev, test and prod) or in the same enviroment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So u should run the fm to return the name of fm generated as soon as the smartform is activated:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: FM_NAME TYPE RS38L_FNAM,
      SF_NAME TYPE TDSFNAME. 

SF_NAME = &amp;lt;smartform name&amp;gt;.

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
           FORMNAME           = SF_NAME
      IMPORTING
           FM_NAME            = FM_NAME
      EXCEPTIONS
           NO_FORM            = 1
           NO_FUNCTION_MODULE = 2
           OTHERS             = 3.
IF SY-SUBRC &amp;lt;&amp;gt; 0.
* ----&amp;gt; No function
ELSE.
* Call smartform
 CALL FUNCTION FM_NAME
   ................ 
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 10:15:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671794#M1289697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T10:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP error: CALL_FUNCTION_NOT_FOUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671795#M1289698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That also i am doing. My problem got resolved now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all for your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kusuma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2009 10:26:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-error-call-function-not-found/m-p/5671795#M1289698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-02T10:26:36Z</dc:date>
    </item>
  </channel>
</rss>

