SAP ELM_CHECK_FRAME Function Module for Ext. List Management - Framework for Check









ELM_CHECK_FRAME is a standard elm check frame SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Ext. List Management - Framework for Check 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 elm check frame FM, simply by entering the name ELM_CHECK_FRAME into the relevant SAP transaction such as SE37 or SE38.

Function Group: ELM_CHECK_FRAME
Program Name: SAPLELM_CHECK_FRAME
Main Program: SAPLELM_CHECK_FRAME
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ELM_CHECK_FRAME 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 'ELM_CHECK_FRAME'"Ext. List Management - Framework for Check
EXPORTING
IV_LIST_GUID = "Ext. List Mangement: GUID for BP List
IV_EVENT = "Ext. List Management - Event for Interaction Layer
IS_LIST = "Ext. List Management: API Interface for Input
IT_STEP = "Ext. List Management - Steps API-IN
IT_FILE = "Ext. List Management - File API-IN

IMPORTING
ET_DUPLICATES = "Ext. List Management: Duplicates Found
EV_DUPLICATES_FOUND = "Ext. List Management: Inidicator for Duplicate
ET_POSTAL_ERRORS = "Ext. List Management: Data with Postal Errors
EV_POSTAL_ERRORS_FOUND = "Ext. List Management: Indicator for Postal Errors
EV_ERROR = "Ext. List Management: Error Indicator (X = Error)
ET_MESSAGE = "Table with BAPI Return Information
.



IMPORTING Parameters details for ELM_CHECK_FRAME

IV_LIST_GUID - Ext. List Mangement: GUID for BP List

Data type: ELMT_LIST_GUID
Optional: No
Call by Reference: Yes

IV_EVENT - Ext. List Management - Event for Interaction Layer

Data type: ELMT_EVENT_IL
Optional: No
Call by Reference: Yes

IS_LIST - Ext. List Management: API Interface for Input

Data type: ELMT_LIST_API_IN
Optional: No
Call by Reference: Yes

IT_STEP - Ext. List Management - Steps API-IN

Data type: ELMT_STEP_API_IN_TAB
Optional: No
Call by Reference: Yes

IT_FILE - Ext. List Management - File API-IN

Data type: ELMT_FILE_API_IN_TAB
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for ELM_CHECK_FRAME

ET_DUPLICATES - Ext. List Management: Duplicates Found

Data type: ELMT_CHECK_DUP_FOUND_TAB
Optional: No
Call by Reference: Yes

EV_DUPLICATES_FOUND - Ext. List Management: Inidicator for Duplicate

Data type: ELMT_DUPLICATE_FLAG
Optional: No
Call by Reference: Yes

ET_POSTAL_ERRORS - Ext. List Management: Data with Postal Errors

Data type: ELMT_CHECK_POSTAL_ERROR_TAB
Optional: No
Call by Reference: Yes

EV_POSTAL_ERRORS_FOUND - Ext. List Management: Indicator for Postal Errors

Data type: ELMT_ERROR_POSTAL_FLAG
Optional: No
Call by Reference: Yes

EV_ERROR - Ext. List Management: Error Indicator (X = Error)

Data type: ELMT_ERROR
Optional: No
Call by Reference: Yes

ET_MESSAGE - Table with BAPI Return Information

Data type: BAPIRETTAB
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ELM_CHECK_FRAME 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_iv_list_guid  TYPE ELMT_LIST_GUID, "   
lv_et_duplicates  TYPE ELMT_CHECK_DUP_FOUND_TAB, "   
lv_iv_event  TYPE ELMT_EVENT_IL, "   
lv_ev_duplicates_found  TYPE ELMT_DUPLICATE_FLAG, "   
lv_is_list  TYPE ELMT_LIST_API_IN, "   
lv_et_postal_errors  TYPE ELMT_CHECK_POSTAL_ERROR_TAB, "   
lv_it_step  TYPE ELMT_STEP_API_IN_TAB, "   
lv_ev_postal_errors_found  TYPE ELMT_ERROR_POSTAL_FLAG, "   
lv_it_file  TYPE ELMT_FILE_API_IN_TAB, "   
lv_ev_error  TYPE ELMT_ERROR, "   
lv_et_message  TYPE BAPIRETTAB. "   

  CALL FUNCTION 'ELM_CHECK_FRAME'  "Ext. List Management - Framework for Check
    EXPORTING
         IV_LIST_GUID = lv_iv_list_guid
         IV_EVENT = lv_iv_event
         IS_LIST = lv_is_list
         IT_STEP = lv_it_step
         IT_FILE = lv_it_file
    IMPORTING
         ET_DUPLICATES = lv_et_duplicates
         EV_DUPLICATES_FOUND = lv_ev_duplicates_found
         ET_POSTAL_ERRORS = lv_et_postal_errors
         EV_POSTAL_ERRORS_FOUND = lv_ev_postal_errors_found
         EV_ERROR = lv_ev_error
         ET_MESSAGE = lv_et_message
. " ELM_CHECK_FRAME




ABAP code using 7.40 inline data declarations to call FM ELM_CHECK_FRAME

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.

 
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!