SAP ISU_REQUEST_RETURN_0701 Function Module for ISU Correpondence - Sample Module for Correspondence Request Returns
ISU_REQUEST_RETURN_0701 is a standard isu request return 0701 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ISU Correpondence - Sample Module for Correspondence Request Returns 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 isu request return 0701 FM, simply by entering the name ISU_REQUEST_RETURN_0701 into the relevant SAP transaction such as SE37 or SE38.
Function Group: EKKO
Program Name: SAPLEKKO
Main Program: SAPLEKKO
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_REQUEST_RETURN_0701 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 'ISU_REQUEST_RETURN_0701'"ISU Correpondence - Sample Module for Correspondence Request Returns.
EXPORTING
* I_FKKCOINFO = "Print container info
I_DFKKRK = "Returns lot header
I_DFKKRP = "Returns lot item
I_FKKVK = "Contract Account
I_FKKVKP = "Contract account item
I_FKKRACT = "Returns activities (key fields)
I_FKKRH = "Returns History
* I_FORMKEY = "Application Form
IMPORTING
E_COMREQ = "Flag: Commit Required
TABLES
T_CFKKOP = "Returns source items
T_ZFKKOP = "Returns down payments
T_FIMSG = "
IMPORTING Parameters details for ISU_REQUEST_RETURN_0701
I_FKKCOINFO - Print container info
Data type: FKKCOINFOOptional: Yes
Call by Reference: No ( called with pass by value option)
I_DFKKRK - Returns lot header
Data type: DFKKRKOptional: No
Call by Reference: No ( called with pass by value option)
I_DFKKRP - Returns lot item
Data type: DFKKRPOptional: No
Call by Reference: No ( called with pass by value option)
I_FKKVK - Contract Account
Data type: FKKVKOptional: No
Call by Reference: No ( called with pass by value option)
I_FKKVKP - Contract account item
Data type: FKKVKPOptional: No
Call by Reference: No ( called with pass by value option)
I_FKKRACT - Returns activities (key fields)
Data type: FKKRACTOptional: No
Call by Reference: No ( called with pass by value option)
I_FKKRH - Returns History
Data type: DFKKRHOptional: No
Call by Reference: No ( called with pass by value option)
I_FORMKEY - Application Form
Data type: FORMKEYOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISU_REQUEST_RETURN_0701
E_COMREQ - Flag: Commit Required
Data type: BOOLE-BOOLEOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISU_REQUEST_RETURN_0701
T_CFKKOP - Returns source items
Data type: FKKOPOptional: No
Call by Reference: No ( called with pass by value option)
T_ZFKKOP - Returns down payments
Data type: FKKOPOptional: No
Call by Reference: No ( called with pass by value option)
T_FIMSG -
Data type: FIMSGOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_REQUEST_RETURN_0701 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_comreq | TYPE BOOLE-BOOLE, " | |||
| lt_t_cfkkop | TYPE STANDARD TABLE OF FKKOP, " | |||
| lv_i_fkkcoinfo | TYPE FKKCOINFO, " | |||
| lv_i_dfkkrk | TYPE DFKKRK, " | |||
| lt_t_zfkkop | TYPE STANDARD TABLE OF FKKOP, " | |||
| lt_t_fimsg | TYPE STANDARD TABLE OF FIMSG, " | |||
| lv_i_dfkkrp | TYPE DFKKRP, " | |||
| lv_i_fkkvk | TYPE FKKVK, " | |||
| lv_i_fkkvkp | TYPE FKKVKP, " | |||
| lv_i_fkkract | TYPE FKKRACT, " | |||
| lv_i_fkkrh | TYPE DFKKRH, " | |||
| lv_i_formkey | TYPE FORMKEY. " |
|   CALL FUNCTION 'ISU_REQUEST_RETURN_0701' "ISU Correpondence - Sample Module for Correspondence Request Returns |
| EXPORTING | ||
| I_FKKCOINFO | = lv_i_fkkcoinfo | |
| I_DFKKRK | = lv_i_dfkkrk | |
| I_DFKKRP | = lv_i_dfkkrp | |
| I_FKKVK | = lv_i_fkkvk | |
| I_FKKVKP | = lv_i_fkkvkp | |
| I_FKKRACT | = lv_i_fkkract | |
| I_FKKRH | = lv_i_fkkrh | |
| I_FORMKEY | = lv_i_formkey | |
| IMPORTING | ||
| E_COMREQ | = lv_e_comreq | |
| TABLES | ||
| T_CFKKOP | = lt_t_cfkkop | |
| T_ZFKKOP | = lt_t_zfkkop | |
| T_FIMSG | = lt_t_fimsg | |
| . " ISU_REQUEST_RETURN_0701 | ||
ABAP code using 7.40 inline data declarations to call FM ISU_REQUEST_RETURN_0701
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 BOOLE FROM BOOLE INTO @DATA(ld_e_comreq). | ||||
Search for further information about these or an SAP related objects