SAP FI_RESPONSE_STORE Function Module for
FI_RESPONSE_STORE is a standard fi response store 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 fi response store FM, simply by entering the name FI_RESPONSE_STORE into the relevant SAP transaction such as SE37 or SE38.
Function Group: FPIS
Program Name: SAPLFPIS
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FI_RESPONSE_STORE 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 'FI_RESPONSE_STORE'".
EXPORTING
PI_FI_MESSAGE_OBJECT_ID = "
PI_FI_REQUEST_OBJECT_ID = "
PI_FI_RESPONSE_PROP_APPL = "
* PI_FI_RESPONSE_GUID = "
IMPORTING
PE_FI_RESPONSE_OBJECT_ID = "
TABLES
* PT_FILE_CONTENT_ASCII = "
PT_FI_RESPONSE_ACCES_INFO = "
EXCEPTIONS
RESPONSE_NOT_CREATED = 1 RESPONSE_ENQUEUE_FAILED = 2 RESPONSE_CONTENT_NOT_STORED = 3
IMPORTING Parameters details for FI_RESPONSE_STORE
PI_FI_MESSAGE_OBJECT_ID -
Data type: SDOKOBJECTOptional: No
Call by Reference: No ( called with pass by value option)
PI_FI_REQUEST_OBJECT_ID -
Data type: SDOKOBJECTOptional: No
Call by Reference: No ( called with pass by value option)
PI_FI_RESPONSE_PROP_APPL -
Data type: FIRESP_PROPOptional: No
Call by Reference: No ( called with pass by value option)
PI_FI_RESPONSE_GUID -
Data type: SDOKPHIO-PHIO_IDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FI_RESPONSE_STORE
PE_FI_RESPONSE_OBJECT_ID -
Data type: SDOKOBJECTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FI_RESPONSE_STORE
PT_FILE_CONTENT_ASCII -
Data type: SDOKCNTASCOptional: Yes
Call by Reference: No ( called with pass by value option)
PT_FI_RESPONSE_ACCES_INFO -
Data type: SDOKFILACIOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
RESPONSE_NOT_CREATED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
RESPONSE_ENQUEUE_FAILED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
RESPONSE_CONTENT_NOT_STORED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FI_RESPONSE_STORE 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_response_not_created | TYPE STRING, " | |||
| lt_pt_file_content_ascii | TYPE STANDARD TABLE OF SDOKCNTASC, " | |||
| lv_pi_fi_message_object_id | TYPE SDOKOBJECT, " | |||
| lv_pe_fi_response_object_id | TYPE SDOKOBJECT, " | |||
| lv_pi_fi_request_object_id | TYPE SDOKOBJECT, " | |||
| lv_response_enqueue_failed | TYPE SDOKOBJECT, " | |||
| lt_pt_fi_response_acces_info | TYPE STANDARD TABLE OF SDOKFILACI, " | |||
| lv_pi_fi_response_prop_appl | TYPE FIRESP_PROP, " | |||
| lv_response_content_not_stored | TYPE FIRESP_PROP, " | |||
| lv_pi_fi_response_guid | TYPE SDOKPHIO-PHIO_ID. " |
|   CALL FUNCTION 'FI_RESPONSE_STORE' " |
| EXPORTING | ||
| PI_FI_MESSAGE_OBJECT_ID | = lv_pi_fi_message_object_id | |
| PI_FI_REQUEST_OBJECT_ID | = lv_pi_fi_request_object_id | |
| PI_FI_RESPONSE_PROP_APPL | = lv_pi_fi_response_prop_appl | |
| PI_FI_RESPONSE_GUID | = lv_pi_fi_response_guid | |
| IMPORTING | ||
| PE_FI_RESPONSE_OBJECT_ID | = lv_pe_fi_response_object_id | |
| TABLES | ||
| PT_FILE_CONTENT_ASCII | = lt_pt_file_content_ascii | |
| PT_FI_RESPONSE_ACCES_INFO | = lt_pt_fi_response_acces_info | |
| EXCEPTIONS | ||
| RESPONSE_NOT_CREATED = 1 | ||
| RESPONSE_ENQUEUE_FAILED = 2 | ||
| RESPONSE_CONTENT_NOT_STORED = 3 | ||
| . " FI_RESPONSE_STORE | ||
ABAP code using 7.40 inline data declarations to call FM FI_RESPONSE_STORE
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 PHIO_ID FROM SDOKPHIO INTO @DATA(ld_pi_fi_response_guid). | ||||
Search for further information about these or an SAP related objects