SAP E2EIE_FM_EXPORT_DATA Function Module for Test Cockpit API: Export generated transactional data
E2EIE_FM_EXPORT_DATA is a standard e2eie fm export data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Test Cockpit API: Export generated transactional data 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 e2eie fm export data FM, simply by entering the name E2EIE_FM_EXPORT_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: E2EIE_API
Program Name: SAPLE2EIE_API
Main Program: SAPLE2EIE_API
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function E2EIE_FM_EXPORT_DATA 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 'E2EIE_FM_EXPORT_DATA'"Test Cockpit API: Export generated transactional data.
EXPORTING
IV_TIMESTAMP = "UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
IV_TESTPLANID = "Globally Unique Identifier
IV_BPDNUM = "Sequence number
IV_STEPNUM = "Sequence number
IV_ACTIONNUM = "Sequence number
IMPORTING
OV_RUNRESULT = "Text of length 1000
EXCEPTIONS
1 = 1 2 = 2 3 = 3
IMPORTING Parameters details for E2EIE_FM_EXPORT_DATA
IV_TIMESTAMP - UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
Data type: TIMESTAMPOptional: No
Call by Reference: No ( called with pass by value option)
IV_TESTPLANID - Globally Unique Identifier
Data type: GUIDOptional: No
Call by Reference: No ( called with pass by value option)
IV_BPDNUM - Sequence number
Data type: SEQNUMOptional: No
Call by Reference: No ( called with pass by value option)
IV_STEPNUM - Sequence number
Data type: SEQNUMOptional: No
Call by Reference: No ( called with pass by value option)
IV_ACTIONNUM - Sequence number
Data type: SEQNUMOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for E2EIE_FM_EXPORT_DATA
OV_RUNRESULT - Text of length 1000
Data type: TEXT1000Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
1 - BPD is not found
Data type:Optional: No
Call by Reference: Yes
2 - Step is not found
Data type:Optional: No
Call by Reference: Yes
3 - run result is not found
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for E2EIE_FM_EXPORT_DATA 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_1 | TYPE STRING, " | |||
| lv_iv_timestamp | TYPE TIMESTAMP, " | |||
| lv_ov_runresult | TYPE TEXT1000, " | |||
| lv_2 | TYPE TEXT1000, " | |||
| lv_iv_testplanid | TYPE GUID, " | |||
| lv_3 | TYPE GUID, " | |||
| lv_iv_bpdnum | TYPE SEQNUM, " | |||
| lv_iv_stepnum | TYPE SEQNUM, " | |||
| lv_iv_actionnum | TYPE SEQNUM. " |
|   CALL FUNCTION 'E2EIE_FM_EXPORT_DATA' "Test Cockpit API: Export generated transactional data |
| EXPORTING | ||
| IV_TIMESTAMP | = lv_iv_timestamp | |
| IV_TESTPLANID | = lv_iv_testplanid | |
| IV_BPDNUM | = lv_iv_bpdnum | |
| IV_STEPNUM | = lv_iv_stepnum | |
| IV_ACTIONNUM | = lv_iv_actionnum | |
| IMPORTING | ||
| OV_RUNRESULT | = lv_ov_runresult | |
| EXCEPTIONS | ||
| 1 = 1 | ||
| 2 = 2 | ||
| 3 = 3 | ||
| . " E2EIE_FM_EXPORT_DATA | ||
ABAP code using 7.40 inline data declarations to call FM E2EIE_FM_EXPORT_DATA
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.Search for further information about these or an SAP related objects