SAP FMCA_INCORR_SELECT Function Module for Selektiert zu Kriterien (Struktur FMCA_INCORR)
FMCA_INCORR_SELECT is a standard fmca incorr select SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Selektiert zu Kriterien (Struktur FMCA_INCORR) 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 fmca incorr select FM, simply by entering the name FMCA_INCORR_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMCA_INCORR
Program Name: SAPLFMCA_INCORR
Main Program: SAPLFMCA_INCORR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FMCA_INCORR_SELECT 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 'FMCA_INCORR_SELECT'"Selektiert zu Kriterien (Struktur FMCA_INCORR).
EXPORTING
* SEL_INCOTYP = "Eingangskorrespondenztypen
* I_CONSOLIDATED = ' ' "auch konsolidierte Anforderungen
* I_ALSO_RECEIVED = ' ' "auch erfüllte Anforderungen
I_MAXROWS = 0 "maximum number of entries
* SEL_GPART = "Geschäftspartnernummern
* SEL_VKONT = "Vertragskontonummern
* SEL_VTREF = "Referenzangaben aus dem Vertrag
* I_SUBAP = "Subapplikation im Vertragskontokorrent
* SEL_PERSL = "Schlüssel für Periodenzuordnung
* I_ABRZU = "Untergrenze des Abrechnungszeitraums
* I_BYPASS_BUFFER = ' ' "Ohne Puffer
* I_FAEDN = "Fälligkeitsdatum, bis zu dem selektiert wird
IMPORTING
E_INCORR = "Eingangskorrespondenzen
IMPORTING Parameters details for FMCA_INCORR_SELECT
SEL_INCOTYP - Eingangskorrespondenztypen
Data type: RSELOPTIONOptional: Yes
Call by Reference: Yes
I_CONSOLIDATED - auch konsolidierte Anforderungen
Data type: BOOLEANDefault: ' '
Optional: No
Call by Reference: Yes
I_ALSO_RECEIVED - auch erfüllte Anforderungen
Data type: BOOLEANDefault: ' '
Optional: No
Call by Reference: Yes
I_MAXROWS - maximum number of entries
Data type: IOptional: No
Call by Reference: Yes
SEL_GPART - Geschäftspartnernummern
Data type: RSELOPTIONOptional: Yes
Call by Reference: Yes
SEL_VKONT - Vertragskontonummern
Data type: RSELOPTIONOptional: Yes
Call by Reference: Yes
SEL_VTREF - Referenzangaben aus dem Vertrag
Data type: RSELOPTIONOptional: Yes
Call by Reference: Yes
I_SUBAP - Subapplikation im Vertragskontokorrent
Data type: SUBAP_KKOptional: Yes
Call by Reference: Yes
SEL_PERSL - Schlüssel für Periodenzuordnung
Data type: RSELOPTIONOptional: Yes
Call by Reference: Yes
I_ABRZU - Untergrenze des Abrechnungszeitraums
Data type: ABRZU_KKOptional: Yes
Call by Reference: Yes
I_BYPASS_BUFFER - Ohne Puffer
Data type: BOOLEANDefault: ' '
Optional: No
Call by Reference: Yes
I_FAEDN - Fälligkeitsdatum, bis zu dem selektiert wird
Data type: INCORR_FAEDN_KKOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FMCA_INCORR_SELECT
E_INCORR - Eingangskorrespondenzen
Data type: FMCA_INCORR_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FMCA_INCORR_SELECT 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_e_incorr | TYPE FMCA_INCORR_TAB, " | |||
| lv_sel_incotyp | TYPE RSELOPTION, " | |||
| lv_i_consolidated | TYPE BOOLEAN, " ' ' | |||
| lv_i_also_received | TYPE BOOLEAN, " ' ' | |||
| lv_i_maxrows | TYPE I, " 0 | |||
| lv_sel_gpart | TYPE RSELOPTION, " | |||
| lv_sel_vkont | TYPE RSELOPTION, " | |||
| lv_sel_vtref | TYPE RSELOPTION, " | |||
| lv_i_subap | TYPE SUBAP_KK, " | |||
| lv_sel_persl | TYPE RSELOPTION, " | |||
| lv_i_abrzu | TYPE ABRZU_KK, " | |||
| lv_i_bypass_buffer | TYPE BOOLEAN, " ' ' | |||
| lv_i_faedn | TYPE INCORR_FAEDN_KK. " |
|   CALL FUNCTION 'FMCA_INCORR_SELECT' "Selektiert zu Kriterien (Struktur FMCA_INCORR) |
| EXPORTING | ||
| SEL_INCOTYP | = lv_sel_incotyp | |
| I_CONSOLIDATED | = lv_i_consolidated | |
| I_ALSO_RECEIVED | = lv_i_also_received | |
| I_MAXROWS | = lv_i_maxrows | |
| SEL_GPART | = lv_sel_gpart | |
| SEL_VKONT | = lv_sel_vkont | |
| SEL_VTREF | = lv_sel_vtref | |
| I_SUBAP | = lv_i_subap | |
| SEL_PERSL | = lv_sel_persl | |
| I_ABRZU | = lv_i_abrzu | |
| I_BYPASS_BUFFER | = lv_i_bypass_buffer | |
| I_FAEDN | = lv_i_faedn | |
| IMPORTING | ||
| E_INCORR | = lv_e_incorr | |
| . " FMCA_INCORR_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM FMCA_INCORR_SELECT
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_i_consolidated) | = ' '. | |||
| DATA(ld_i_also_received) | = ' '. | |||
| DATA(ld_i_bypass_buffer) | = ' '. | |||
Search for further information about these or an SAP related objects