SAP COTPL_PROCESS_CHECK_FORMULA Function Module for Checks business process formula
COTPL_PROCESS_CHECK_FORMULA is a standard cotpl process check formula SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Checks business process formula processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for cotpl process check formula FM, simply by entering the name COTPL_PROCESS_CHECK_FORMULA into the relevant SAP transaction such as SE37 or SE38.
Function Group: KWTMA
Program Name: SAPLKWTMA
Main Program: SAPLKWTMA
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function COTPL_PROCESS_CHECK_FORMULA pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'COTPL_PROCESS_CHECK_FORMULA'"Checks business process formula.
EXPORTING
TPLINFO = "Template information
* LINETYPE = '3' "Template linetype
SINGLE_KEY = "Single key but with formula specified
IMPORTING
FORMULA_VALID = "Formula is valid
TABLES
SENDER_FUNCTIONS = "Template sender function information
SENDER_VALUES = "Table of function keys with object values
FORMULA_SOURCE = "Source code of formula
FORMULA_TREE = "Syntax tree of formula
IMPORTING Parameters details for COTPL_PROCESS_CHECK_FORMULA
TPLINFO - Template information
Data type: COTPL_INFOOptional: No
Call by Reference: No ( called with pass by value option)
LINETYPE - Template linetype
Data type: COTPL_LINETYPEDefault: '3'
Optional: Yes
Call by Reference: No ( called with pass by value option)
SINGLE_KEY - Single key but with formula specified
Data type: BOOLEANOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for COTPL_PROCESS_CHECK_FORMULA
FORMULA_VALID - Formula is valid
Data type: BOOLEANOptional: No
Call by Reference: Yes
TABLES Parameters details for COTPL_PROCESS_CHECK_FORMULA
SENDER_FUNCTIONS - Template sender function information
Data type: COTPL_SEND_FUNCOptional: No
Call by Reference: No ( called with pass by value option)
SENDER_VALUES - Table of function keys with object values
Data type: COTPL_T_VALUEOptional: No
Call by Reference: No ( called with pass by value option)
FORMULA_SOURCE - Source code of formula
Data type: TPLIC_SRC_TABOptional: No
Call by Reference: No ( called with pass by value option)
FORMULA_TREE - Syntax tree of formula
Data type: TPLIC_SYNTAX_TREEOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for COTPL_PROCESS_CHECK_FORMULA Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_tplinfo | TYPE COTPL_INFO, " | |||
| lv_formula_valid | TYPE BOOLEAN, " | |||
| lt_sender_functions | TYPE STANDARD TABLE OF COTPL_SEND_FUNC, " | |||
| lv_linetype | TYPE COTPL_LINETYPE, " '3' | |||
| lt_sender_values | TYPE STANDARD TABLE OF COTPL_T_VALUE, " | |||
| lv_single_key | TYPE BOOLEAN, " | |||
| lt_formula_source | TYPE STANDARD TABLE OF TPLIC_SRC_TAB, " | |||
| lt_formula_tree | TYPE STANDARD TABLE OF TPLIC_SYNTAX_TREE. " |
|   CALL FUNCTION 'COTPL_PROCESS_CHECK_FORMULA' "Checks business process formula |
| EXPORTING | ||
| TPLINFO | = lv_tplinfo | |
| LINETYPE | = lv_linetype | |
| SINGLE_KEY | = lv_single_key | |
| IMPORTING | ||
| FORMULA_VALID | = lv_formula_valid | |
| TABLES | ||
| SENDER_FUNCTIONS | = lt_sender_functions | |
| SENDER_VALUES | = lt_sender_values | |
| FORMULA_SOURCE | = lt_formula_source | |
| FORMULA_TREE | = lt_formula_tree | |
| . " COTPL_PROCESS_CHECK_FORMULA | ||
ABAP code using 7.40 inline data declarations to call FM COTPL_PROCESS_CHECK_FORMULA
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_linetype) | = '3'. | |||
Search for further information about these or an SAP related objects