SAP FMCB_GET_ITEM_MM Function Module for
FMCB_GET_ITEM_MM is a standard fmcb get item mm 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 fmcb get item mm FM, simply by entering the name FMCB_GET_ITEM_MM into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMEP
Program Name: SAPLFMEP
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FMCB_GET_ITEM_MM 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 'FMCB_GET_ITEM_MM'".
EXPORTING
I_EBELN = "
* I_EBELP = 00 "
* I_ETENR = 0000 "
* I_LEDNR = 0000 "
* I_WRTTP = '51' "
* I_ZEKKN = 00 "
* I_FLG_READ_ZEKKN = ' ' "
TABLES
T_FMEPIN = "
IMPORTING Parameters details for FMCB_GET_ITEM_MM
I_EBELN -
Data type: EKBP-EBELNOptional: No
Call by Reference: No ( called with pass by value option)
I_EBELP -
Data type: EKBP-EBELPDefault: 00
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_ETENR -
Data type: FMEPIN-ETENRDefault: 0000
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_LEDNR -
Data type: FMEPIN-LEDNRDefault: 0000
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_WRTTP -
Data type: FMEPIN-WRTTPDefault: '51'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_ZEKKN -
Data type: FMEPIN-ZEKKNDefault: 00
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FLG_READ_ZEKKN -
Data type: FMDY-XFELDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FMCB_GET_ITEM_MM
T_FMEPIN -
Data type: FMEPINOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FMCB_GET_ITEM_MM 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_ebeln | TYPE EKBP-EBELN, " | |||
| lt_t_fmepin | TYPE STANDARD TABLE OF FMEPIN, " | |||
| lv_i_ebelp | TYPE EKBP-EBELP, " 00 | |||
| lv_i_etenr | TYPE FMEPIN-ETENR, " 0000 | |||
| lv_i_lednr | TYPE FMEPIN-LEDNR, " 0000 | |||
| lv_i_wrttp | TYPE FMEPIN-WRTTP, " '51' | |||
| lv_i_zekkn | TYPE FMEPIN-ZEKKN, " 00 | |||
| lv_i_flg_read_zekkn | TYPE FMDY-XFELD. " SPACE |
|   CALL FUNCTION 'FMCB_GET_ITEM_MM' " |
| EXPORTING | ||
| I_EBELN | = lv_i_ebeln | |
| I_EBELP | = lv_i_ebelp | |
| I_ETENR | = lv_i_etenr | |
| I_LEDNR | = lv_i_lednr | |
| I_WRTTP | = lv_i_wrttp | |
| I_ZEKKN | = lv_i_zekkn | |
| I_FLG_READ_ZEKKN | = lv_i_flg_read_zekkn | |
| TABLES | ||
| T_FMEPIN | = lt_t_fmepin | |
| . " FMCB_GET_ITEM_MM | ||
ABAP code using 7.40 inline data declarations to call FM FMCB_GET_ITEM_MM
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 EBELN FROM EKBP INTO @DATA(ld_i_ebeln). | ||||
| "SELECT single EBELP FROM EKBP INTO @DATA(ld_i_ebelp). | ||||
| DATA(ld_i_ebelp) | = 00. | |||
| "SELECT single ETENR FROM FMEPIN INTO @DATA(ld_i_etenr). | ||||
| DATA(ld_i_etenr) | = 0000. | |||
| "SELECT single LEDNR FROM FMEPIN INTO @DATA(ld_i_lednr). | ||||
| DATA(ld_i_lednr) | = 0000. | |||
| "SELECT single WRTTP FROM FMEPIN INTO @DATA(ld_i_wrttp). | ||||
| DATA(ld_i_wrttp) | = '51'. | |||
| "SELECT single ZEKKN FROM FMEPIN INTO @DATA(ld_i_zekkn). | ||||
| DATA(ld_i_zekkn) | = 00. | |||
| "SELECT single XFELD FROM FMDY INTO @DATA(ld_i_flg_read_zekkn). | ||||
| DATA(ld_i_flg_read_zekkn) | = ' '. | |||
Search for further information about these or an SAP related objects