<?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: call function and call customer function in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730023#M633684</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION is provided by SAP to allow the customer to add their own logic to the standard transaction.  If the customer isn't using the function, nothing happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In CALL FUNCTION the function module has to exist, it is used more widely than CALL CUSTOMER-FUNCTION and can be coded by SAP or the customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Aug 2007 09:41:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-29T09:41:01Z</dc:date>
    <item>
      <title>call function and call customer function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730022#M633683</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;Can anybody let me know what is the difference between CALL FUNCTION AND CALL CUSTOMER- FUNCTION .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i know call customer- function is used while we r working on user exits .&lt;/P&gt;&lt;P&gt;but is their any specific reason of difference ...&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>Wed, 29 Aug 2007 09:36:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730022#M633683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-29T09:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: call function and call customer function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730023#M633684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION is provided by SAP to allow the customer to add their own logic to the standard transaction.  If the customer isn't using the function, nothing happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In CALL FUNCTION the function module has to exist, it is used more widely than CALL CUSTOMER-FUNCTION and can be coded by SAP or the customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 09:41:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730023#M633684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-29T09:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: call function and call customer function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730024#M633685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION function_exit parameter_list. &lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement can be used in programs delivered by SAP. It includes the function module exit specified in function_exit . The function module exit is a customer exit. In an SAP program, it enables you to call a function module provided by SAP and implemented by the customer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The indicator function_exit must be a three-digit text field literal. A function module exit is specified by SAP using the transaction SMOD and can be activated using the transaction CMOD in customer systems. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Specifications by SAP &lt;/P&gt;&lt;P&gt;An empty or partly implemented function module must be assigned to the function module exit using the transaction SMOD. The name of the function module consists of EXIT_, the program name, which contains the statement CALL CUSTOMER-FUNCTION, and the three-digit indicator in function_exit. The interface of the function module is completely defined by SAP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activation in the customer system &lt;/P&gt;&lt;P&gt;The transaction CMOD enables the customer to implement the source code of the function module within an enhancement project and to activate the function module exit. If the function module exit is not activated, the statement CALL CUSTOMER-FUNCTION is ignored. If the function module is activated, the corresponding function module is called in the same way as the general function module call. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax and meaning of the parameter_list for the assignment of the actual parameters to formal parameters and for the exception handling are the same as in a general function module call. It is not possible to dynamically fill the interface. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION func &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;CALL FUNCTION func { parameter_list &lt;/P&gt;&lt;P&gt;                   | parameter_tables }. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement calls the function module specified in func. The identifier func must be a character-type data object, which contains the name of a function module in uppercase letters during the statement execution. Each function module of an SAP system has a unique name, which is why you need not specify the function group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use additions parameter_list or parameter_tables (as of release 6.10) to statically or dynamically assign actual parameters to the formal parameters of the function module and return values to the non-class-based exceptions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;If the name of a function module is specified by a constant or as a literal, the extended syntax check can check the statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exceptions &lt;/P&gt;&lt;P&gt;Catchable Exceptions &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_DYN_CALL_ILLEGAL_FUNC &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The called function is known but not active. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_FUNCTION_NOT_ACTIVE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The called function is unknown. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_FUNCTION_NOT_FOUND &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_DYN_CALL_ILLEGAL_TYPE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The type of the actual parameter does not fulfill the requirements of the function interface. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_FUNCTION_CONFLICT_GEN_TYP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The actual parameter does not have the length expected by the function. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_FUNCTION_CONFLICT_LENG &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The actual parameter does not have the type expected by the function. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_FUNCTION_CONFLICT_TYPE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: Only those functions can be called in the update task that are intended for it. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_FUNCTION_NO_VB &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: An actual parameter does not fulfill the alignment requirements of the respective formal parameter. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_FUNCTION_WRONG_ALIGNMENT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_DYN_CALL_PARAM_MISSING &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The function expects a parameter, which has not been passed by the caller. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_FUNCTION_PARM_MISSING &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CX_SY_DYN_CALL_PARAM_NOT_FOUND &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause: The caller has passed a parameter, which is not known to the function. &lt;/P&gt;&lt;P&gt;Runtime Error: CALL_FUNCTION_PARM_UNKNOWN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward points if it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 09:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730024#M633685</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-08-29T09:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: call function and call customer function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730025#M633686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dear,&lt;/P&gt;&lt;P&gt;Call Function is For Function Modules where as&lt;/P&gt;&lt;P&gt;Call Customer-Function Provided by SAP to implement our own logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward.&lt;/P&gt;&lt;P&gt;Bohra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 09:44:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730025#M633686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-29T09:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: call function and call customer function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730026#M633687</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;CALL CUSTOMER-FUNCTION is provided by SAP inorder to enhance the functinality.it contains one zinclude where we write the code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In CALL FUNCTION it is a normal cal to a function module ..this can be either a zfunction module or standard function module...Here we don't enhance sap functionality....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 09:44:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730026#M633687</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-08-29T09:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: call function and call customer function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730027#M633688</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;This is basically kept for differentiating between a normal function call and a call where code has been implemented for the User Exit.&lt;/P&gt;&lt;P&gt;Customer here stands for SAP customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 09:45:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730027#M633688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-29T09:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: call function and call customer function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730028#M633689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shweta,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this link :- &lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/call_cus.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/call_cus.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and reward points if found useful.&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;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 09:46:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730028#M633689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-29T09:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: call function and call customer function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730029#M633690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call function means calling existing functions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call customer function is adding ur own logic to the standard functions&lt;/P&gt;&lt;P&gt;this comes under enhancements  Customer exits&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Aug 2007 09:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730029#M633690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-29T09:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: call function and call customer function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730030#M633691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone tell me the complete process for doing the enhancement? I am very confused about it. If I know how the standard process work let say "Printing process" and I want to modify it so what will be the steps to follow to tell the ABAPer for changing the standard process. Can anyone explain in detail the enhancement process? I am very much new to the customisation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 07:12:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-and-call-customer-function/m-p/2730030#M633691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T07:12:23Z</dc:date>
    </item>
  </channel>
</rss>

