SAP QC00_CHAR_FLD_CONF_COMPLEMENT Function Module for NOTRANSL: Lesen von Feldern, die NICHT in Merkmalsfeldkonfiguration enthal
QC00_CHAR_FLD_CONF_COMPLEMENT is a standard qc00 char fld conf complement SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Lesen von Feldern, die NICHT in Merkmalsfeldkonfiguration enthal 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 qc00 char fld conf complement FM, simply by entering the name QC00_CHAR_FLD_CONF_COMPLEMENT into the relevant SAP transaction such as SE37 or SE38.
Function Group: QC00
Program Name: SAPLQC00
Main Program: SAPLQC00
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QC00_CHAR_FLD_CONF_COMPLEMENT 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 'QC00_CHAR_FLD_CONF_COMPLEMENT'"NOTRANSL: Lesen von Feldern, die NICHT in Merkmalsfeldkonfiguration enthal.
EXPORTING
I_CHAR_FIELD_CONF = "Configuration of Characteristics Field
IMPORTING
ET_QCRES_COMPLEMENT = "Fields for Configuration of Characteristics Fields
ET_QCSPEC_COMPLEMENT = "Fields for Configuration of Characteristics Fields
IMPORTING Parameters details for QC00_CHAR_FLD_CONF_COMPLEMENT
I_CHAR_FIELD_CONF - Configuration of Characteristics Field
Data type: QC_CHAR_FIELD_CONFOptional: No
Call by Reference: Yes
EXPORTING Parameters details for QC00_CHAR_FLD_CONF_COMPLEMENT
ET_QCRES_COMPLEMENT - Fields for Configuration of Characteristics Fields
Data type: QCERT_TT_FIELDOptional: No
Call by Reference: Yes
ET_QCSPEC_COMPLEMENT - Fields for Configuration of Characteristics Fields
Data type: QCERT_TT_FIELDOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for QC00_CHAR_FLD_CONF_COMPLEMENT 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_i_char_field_conf | TYPE QC_CHAR_FIELD_CONF, " | |||
| lv_et_qcres_complement | TYPE QCERT_TT_FIELD, " | |||
| lv_et_qcspec_complement | TYPE QCERT_TT_FIELD. " |
|   CALL FUNCTION 'QC00_CHAR_FLD_CONF_COMPLEMENT' "NOTRANSL: Lesen von Feldern, die NICHT in Merkmalsfeldkonfiguration enthal |
| EXPORTING | ||
| I_CHAR_FIELD_CONF | = lv_i_char_field_conf | |
| IMPORTING | ||
| ET_QCRES_COMPLEMENT | = lv_et_qcres_complement | |
| ET_QCSPEC_COMPLEMENT | = lv_et_qcspec_complement | |
| . " QC00_CHAR_FLD_CONF_COMPLEMENT | ||
ABAP code using 7.40 inline data declarations to call FM QC00_CHAR_FLD_CONF_COMPLEMENT
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