SAP FRML543_COMP_ROW_CHECK Function Module for Check Individual Items in the Composition View
FRML543_COMP_ROW_CHECK is a standard frml543 comp row check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check Individual Items in the Composition View 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 frml543 comp row check FM, simply by entering the name FRML543_COMP_ROW_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: FRML543
Program Name: SAPLFRML543
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FRML543_COMP_ROW_CHECK 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 'FRML543_COMP_ROW_CHECK'"Check Individual Items in the Composition View.
EXPORTING
IO_WBO_FRM = "Reference to Formula Workbench Object
IS_WA_OLD = "
IV_FIELDNAME = "
IS_KEYPATH = "
IS_ADDINF = "
IV_LEVEL = "Formula View
IV_VIEW = "Subview
IMPORTING
E_ERROR_FLAG = "
CHANGING
XS_WA = "Item Data
IMPORTING Parameters details for FRML543_COMP_ROW_CHECK
IO_WBO_FRM - Reference to Formula Workbench Object
Data type: CL_FRML_WBOOptional: No
Call by Reference: Yes
IS_WA_OLD -
Data type:Optional: No
Call by Reference: Yes
IV_FIELDNAME -
Data type: LVC_FNAMEOptional: No
Call by Reference: Yes
IS_KEYPATH -
Data type: FRMLS_KEYPATHOptional: No
Call by Reference: Yes
IS_ADDINF -
Data type: FRMLS_ADDINFOptional: No
Call by Reference: Yes
IV_LEVEL - Formula View
Data type: FRMLE_LEVELOptional: No
Call by Reference: Yes
IV_VIEW - Subview
Data type: FRMLE_VIEWOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FRML543_COMP_ROW_CHECK
E_ERROR_FLAG -
Data type: FRMLE_FLAGOptional: No
Call by Reference: Yes
CHANGING Parameters details for FRML543_COMP_ROW_CHECK
XS_WA - Item Data
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FRML543_COMP_ROW_CHECK 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_xs_wa | TYPE STRING, " | |||
| lv_io_wbo_frm | TYPE CL_FRML_WBO, " | |||
| lv_e_error_flag | TYPE FRMLE_FLAG, " | |||
| lv_is_wa_old | TYPE FRMLE_FLAG, " | |||
| lv_iv_fieldname | TYPE LVC_FNAME, " | |||
| lv_is_keypath | TYPE FRMLS_KEYPATH, " | |||
| lv_is_addinf | TYPE FRMLS_ADDINF, " | |||
| lv_iv_level | TYPE FRMLE_LEVEL, " | |||
| lv_iv_view | TYPE FRMLE_VIEW. " |
|   CALL FUNCTION 'FRML543_COMP_ROW_CHECK' "Check Individual Items in the Composition View |
| EXPORTING | ||
| IO_WBO_FRM | = lv_io_wbo_frm | |
| IS_WA_OLD | = lv_is_wa_old | |
| IV_FIELDNAME | = lv_iv_fieldname | |
| IS_KEYPATH | = lv_is_keypath | |
| IS_ADDINF | = lv_is_addinf | |
| IV_LEVEL | = lv_iv_level | |
| IV_VIEW | = lv_iv_view | |
| IMPORTING | ||
| E_ERROR_FLAG | = lv_e_error_flag | |
| CHANGING | ||
| XS_WA | = lv_xs_wa | |
| . " FRML543_COMP_ROW_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM FRML543_COMP_ROW_CHECK
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