SAP IUUC_EMERG_TR_GET_REMOTE_DATA Function Module for Get Data for Emergency Transport Requests
IUUC_EMERG_TR_GET_REMOTE_DATA is a standard iuuc emerg tr get remote 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 Get Data for Emergency Transport Requests 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 iuuc emerg tr get remote data FM, simply by entering the name IUUC_EMERG_TR_GET_REMOTE_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: IUUC_TABLE_ANALYSIS
Program Name: SAPLIUUC_TABLE_ANALYSIS
Main Program: SAPLIUUC_TABLE_ANALYSIS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function IUUC_EMERG_TR_GET_REMOTE_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 'IUUC_EMERG_TR_GET_REMOTE_DATA'"Get Data for Emergency Transport Requests.
IMPORTING
ET_E070_PL = "IUUC RFC payload table
ET_TRESC_PL = "IUUC RFC payload table
ET_E071_PL = "IUUC RFC payload table
ET_E071K_PL = "IUUC RFC payload table
ET_E071K_L_PL = "IUUC RFC payload table
ET_OBJH_PL = "IUUC RFC payload table
ET_OBJM_PL = "IUUC RFC payload table
ET_OBJS_PL = "IUUC RFC payload table
ET_E070C_PL = "IUUC RFC payload table
ET_DD02L_PL = "DD02L
TABLES
IT_TRKORR_SEL = "Range Structure for Request
ET_ETR_DDIC_DATA = "DDIC data related to emergency transport requests
EXCEPTIONS
NO_AUTHORIZATION = 1 UNEXPECTED_ERROR = 2
EXPORTING Parameters details for IUUC_EMERG_TR_GET_REMOTE_DATA
ET_E070_PL - IUUC RFC payload table
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_TRESC_PL - IUUC RFC payload table
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_E071_PL - IUUC RFC payload table
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_E071K_PL - IUUC RFC payload table
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_E071K_L_PL - IUUC RFC payload table
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_OBJH_PL - IUUC RFC payload table
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_OBJM_PL - IUUC RFC payload table
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_OBJS_PL - IUUC RFC payload table
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_E070C_PL - IUUC RFC payload table
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_DD02L_PL - DD02L
Data type: IUUC_RFC_PAYLOAD_TABOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for IUUC_EMERG_TR_GET_REMOTE_DATA
IT_TRKORR_SEL - Range Structure for Request
Data type: CTRS_REQUOptional: No
Call by Reference: Yes
ET_ETR_DDIC_DATA - DDIC data related to emergency transport requests
Data type: IUUC_S_EMERG_TRANS_DDIC_DATAOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_AUTHORIZATION -
Data type:Optional: No
Call by Reference: Yes
UNEXPECTED_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for IUUC_EMERG_TR_GET_REMOTE_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_et_e070_pl | TYPE IUUC_RFC_PAYLOAD_TAB, " | |||
| lt_it_trkorr_sel | TYPE STANDARD TABLE OF CTRS_REQU, " | |||
| lv_no_authorization | TYPE CTRS_REQU, " | |||
| lv_et_tresc_pl | TYPE IUUC_RFC_PAYLOAD_TAB, " | |||
| lv_et_e071_pl | TYPE IUUC_RFC_PAYLOAD_TAB, " | |||
| lt_et_etr_ddic_data | TYPE STANDARD TABLE OF IUUC_S_EMERG_TRANS_DDIC_DATA, " | |||
| lv_unexpected_error | TYPE IUUC_S_EMERG_TRANS_DDIC_DATA, " | |||
| lv_et_e071k_pl | TYPE IUUC_RFC_PAYLOAD_TAB, " | |||
| lv_et_e071k_l_pl | TYPE IUUC_RFC_PAYLOAD_TAB, " | |||
| lv_et_objh_pl | TYPE IUUC_RFC_PAYLOAD_TAB, " | |||
| lv_et_objm_pl | TYPE IUUC_RFC_PAYLOAD_TAB, " | |||
| lv_et_objs_pl | TYPE IUUC_RFC_PAYLOAD_TAB, " | |||
| lv_et_e070c_pl | TYPE IUUC_RFC_PAYLOAD_TAB, " | |||
| lv_et_dd02l_pl | TYPE IUUC_RFC_PAYLOAD_TAB. " |
|   CALL FUNCTION 'IUUC_EMERG_TR_GET_REMOTE_DATA' "Get Data for Emergency Transport Requests |
| IMPORTING | ||
| ET_E070_PL | = lv_et_e070_pl | |
| ET_TRESC_PL | = lv_et_tresc_pl | |
| ET_E071_PL | = lv_et_e071_pl | |
| ET_E071K_PL | = lv_et_e071k_pl | |
| ET_E071K_L_PL | = lv_et_e071k_l_pl | |
| ET_OBJH_PL | = lv_et_objh_pl | |
| ET_OBJM_PL | = lv_et_objm_pl | |
| ET_OBJS_PL | = lv_et_objs_pl | |
| ET_E070C_PL | = lv_et_e070c_pl | |
| ET_DD02L_PL | = lv_et_dd02l_pl | |
| TABLES | ||
| IT_TRKORR_SEL | = lt_it_trkorr_sel | |
| ET_ETR_DDIC_DATA | = lt_et_etr_ddic_data | |
| EXCEPTIONS | ||
| NO_AUTHORIZATION = 1 | ||
| UNEXPECTED_ERROR = 2 | ||
| . " IUUC_EMERG_TR_GET_REMOTE_DATA | ||
ABAP code using 7.40 inline data declarations to call FM IUUC_EMERG_TR_GET_REMOTE_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