SAP ISSR_READ_RPI_MFT Function Module for
ISSR_READ_RPI_MFT is a standard issr read rpi mft 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 issr read rpi mft FM, simply by entering the name ISSR_READ_RPI_MFT into the relevant SAP transaction such as SE37 or SE38.
Function Group: ISSR_READ
Program Name: SAPLISSR_READ
Main Program: SAPLISSR_READ
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISSR_READ_RPI_MFT 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 'ISSR_READ_RPI_MFT'".
EXPORTING
I_COUNTRY_VAR = "
* I_DV = "
* I_DVUA = "
* I_ABS54AVAG = "
I_BUKRS = "
* I_PRODUCT_CATEGORY = "
* I_PRODUCT_TYPE = "
* I_ASSET_NR = "
* I_SEC_ACCOUNT = "
* I_BUDAT = SY-DATUM "
* I_SPARTE = "
* I_STOCKBAV = "
IMPORTING
E_S_ISSR_RPI_MFT = "
TABLES
* E_T_ISSR_RPI_MFT = "
EXCEPTIONS
NO_DATA_FOUND = 1
IMPORTING Parameters details for ISSR_READ_RPI_MFT
I_COUNTRY_VAR -
Data type: ISSR_REP_COUNTRYOptional: No
Call by Reference: No ( called with pass by value option)
I_DV -
Data type: ISSR_DVOptional: Yes
Call by Reference: No ( called with pass by value option)
I_DVUA -
Data type: ISSR_UAOptional: Yes
Call by Reference: No ( called with pass by value option)
I_ABS54AVAG -
Data type: ISSR_ABS54AVAGOptional: Yes
Call by Reference: No ( called with pass by value option)
I_BUKRS -
Data type: BUKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_PRODUCT_CATEGORY -
Data type: ISSR_PRODUCT_CATEGORYOptional: Yes
Call by Reference: No ( called with pass by value option)
I_PRODUCT_TYPE -
Data type: ISSR_PRODUCT_TYPEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_ASSET_NR -
Data type: ISSR_ASSET_NROptional: Yes
Call by Reference: No ( called with pass by value option)
I_SEC_ACCOUNT -
Data type: ISSR_SECURITY_ACCOUNTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_BUDAT -
Data type: BUDATDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_SPARTE -
Data type: ISSR_VERS_SPARTEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_STOCKBAV -
Data type: ISSR_STOCKBAVOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISSR_READ_RPI_MFT
E_S_ISSR_RPI_MFT -
Data type: ISSR_RPI_MFTOptional: No
Call by Reference: Yes
TABLES Parameters details for ISSR_READ_RPI_MFT
E_T_ISSR_RPI_MFT -
Data type: ISSR_RPI_MFTOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_DATA_FOUND -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISSR_READ_RPI_MFT 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_country_var | TYPE ISSR_REP_COUNTRY, " | |||
| lv_no_data_found | TYPE ISSR_REP_COUNTRY, " | |||
| lv_e_s_issr_rpi_mft | TYPE ISSR_RPI_MFT, " | |||
| lt_e_t_issr_rpi_mft | TYPE STANDARD TABLE OF ISSR_RPI_MFT, " | |||
| lv_i_dv | TYPE ISSR_DV, " | |||
| lv_i_dvua | TYPE ISSR_UA, " | |||
| lv_i_abs54avag | TYPE ISSR_ABS54AVAG, " | |||
| lv_i_bukrs | TYPE BUKRS, " | |||
| lv_i_product_category | TYPE ISSR_PRODUCT_CATEGORY, " | |||
| lv_i_product_type | TYPE ISSR_PRODUCT_TYPE, " | |||
| lv_i_asset_nr | TYPE ISSR_ASSET_NR, " | |||
| lv_i_sec_account | TYPE ISSR_SECURITY_ACCOUNT, " | |||
| lv_i_budat | TYPE BUDAT, " SY-DATUM | |||
| lv_i_sparte | TYPE ISSR_VERS_SPARTE, " | |||
| lv_i_stockbav | TYPE ISSR_STOCKBAV. " |
|   CALL FUNCTION 'ISSR_READ_RPI_MFT' " |
| EXPORTING | ||
| I_COUNTRY_VAR | = lv_i_country_var | |
| I_DV | = lv_i_dv | |
| I_DVUA | = lv_i_dvua | |
| I_ABS54AVAG | = lv_i_abs54avag | |
| I_BUKRS | = lv_i_bukrs | |
| I_PRODUCT_CATEGORY | = lv_i_product_category | |
| I_PRODUCT_TYPE | = lv_i_product_type | |
| I_ASSET_NR | = lv_i_asset_nr | |
| I_SEC_ACCOUNT | = lv_i_sec_account | |
| I_BUDAT | = lv_i_budat | |
| I_SPARTE | = lv_i_sparte | |
| I_STOCKBAV | = lv_i_stockbav | |
| IMPORTING | ||
| E_S_ISSR_RPI_MFT | = lv_e_s_issr_rpi_mft | |
| TABLES | ||
| E_T_ISSR_RPI_MFT | = lt_e_t_issr_rpi_mft | |
| EXCEPTIONS | ||
| NO_DATA_FOUND = 1 | ||
| . " ISSR_READ_RPI_MFT | ||
ABAP code using 7.40 inline data declarations to call FM ISSR_READ_RPI_MFT
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_budat) | = SY-DATUM. | |||
Search for further information about these or an SAP related objects