SAP FMKO_READ_ITEMS Function Module for
FMKO_READ_ITEMS is a standard fmko read items SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fmko read items FM, simply by entering the name FMKO_READ_ITEMS into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMKO
Program Name: SAPLFMKO
Main Program: SAPLFMKO
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FMKO_READ_ITEMS 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 'FMKO_READ_ITEMS'".
EXPORTING
REPID = "
REF_STRUCT = "
CFIELD = "
* FONDS = "
* FAREA = "
* FIPEX = "
* FICTR = "
GJAHR = "
* GNJHR = "
TABLES
* T_R_FIPEX = "
* T_R_FICTR = "
EXCEPTIONS
NOT_FOUND = 1
IMPORTING Parameters details for FMKO_READ_ITEMS
REPID -
Data type: SY-REPIDOptional: No
Call by Reference: Yes
REF_STRUCT -
Data type: DD03L-TABNAMEOptional: No
Call by Reference: Yes
CFIELD -
Data type: FMCOBJC-CFIELDOptional: No
Call by Reference: Yes
FONDS -
Data type: FMAA-FONDSOptional: Yes
Call by Reference: Yes
FAREA -
Data type: FMAA-FAREAOptional: Yes
Call by Reference: Yes
FIPEX -
Data type: FPOS-FIPEXOptional: Yes
Call by Reference: Yes
FICTR -
Data type: FCTR-FICTROptional: Yes
Call by Reference: Yes
GJAHR -
Data type: BPBYX-GJAHROptional: No
Call by Reference: Yes
GNJHR -
Data type: BPBYX-GNJHROptional: Yes
Call by Reference: Yes
TABLES Parameters details for FMKO_READ_ITEMS
T_R_FIPEX -
Data type: RANGE_C24Optional: Yes
Call by Reference: Yes
T_R_FICTR -
Data type: RANGE_C16Optional: Yes
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FMKO_READ_ITEMS 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_repid | TYPE SY-REPID, " | |||
| lv_not_found | TYPE SY, " | |||
| lt_t_r_fipex | TYPE STANDARD TABLE OF RANGE_C24, " | |||
| lt_t_r_fictr | TYPE STANDARD TABLE OF RANGE_C16, " | |||
| lv_ref_struct | TYPE DD03L-TABNAME, " | |||
| lv_cfield | TYPE FMCOBJC-CFIELD, " | |||
| lv_fonds | TYPE FMAA-FONDS, " | |||
| lv_farea | TYPE FMAA-FAREA, " | |||
| lv_fipex | TYPE FPOS-FIPEX, " | |||
| lv_fictr | TYPE FCTR-FICTR, " | |||
| lv_gjahr | TYPE BPBYX-GJAHR, " | |||
| lv_gnjhr | TYPE BPBYX-GNJHR. " |
|   CALL FUNCTION 'FMKO_READ_ITEMS' " |
| EXPORTING | ||
| REPID | = lv_repid | |
| REF_STRUCT | = lv_ref_struct | |
| CFIELD | = lv_cfield | |
| FONDS | = lv_fonds | |
| FAREA | = lv_farea | |
| FIPEX | = lv_fipex | |
| FICTR | = lv_fictr | |
| GJAHR | = lv_gjahr | |
| GNJHR | = lv_gnjhr | |
| TABLES | ||
| T_R_FIPEX | = lt_t_r_fipex | |
| T_R_FICTR | = lt_t_r_fictr | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| . " FMKO_READ_ITEMS | ||
ABAP code using 7.40 inline data declarations to call FM FMKO_READ_ITEMS
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.| "SELECT single REPID FROM SY INTO @DATA(ld_repid). | ||||
| "SELECT single TABNAME FROM DD03L INTO @DATA(ld_ref_struct). | ||||
| "SELECT single CFIELD FROM FMCOBJC INTO @DATA(ld_cfield). | ||||
| "SELECT single FONDS FROM FMAA INTO @DATA(ld_fonds). | ||||
| "SELECT single FAREA FROM FMAA INTO @DATA(ld_farea). | ||||
| "SELECT single FIPEX FROM FPOS INTO @DATA(ld_fipex). | ||||
| "SELECT single FICTR FROM FCTR INTO @DATA(ld_fictr). | ||||
| "SELECT single GJAHR FROM BPBYX INTO @DATA(ld_gjahr). | ||||
| "SELECT single GNJHR FROM BPBYX INTO @DATA(ld_gnjhr). | ||||
Search for further information about these or an SAP related objects