SAP FRML170_TRANSM_API_STRUCT_PART Function Module for NOTRANSL: RMS-FRM: Übertragen der API-Daten des Strukturteils in die Dialo









FRML170_TRANSM_API_STRUCT_PART is a standard frml170 transm api struct part SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: RMS-FRM: Übertragen der API-Daten des Strukturteils in die Dialo 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 frml170 transm api struct part FM, simply by entering the name FRML170_TRANSM_API_STRUCT_PART into the relevant SAP transaction such as SE37 or SE38.

Function Group: FRML170
Program Name: SAPLFRML170
Main Program: SAPLFRML170
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FRML170_TRANSM_API_STRUCT_PART 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 'FRML170_TRANSM_API_STRUCT_PART'"NOTRANSL: RMS-FRM: Übertragen der API-Daten des Strukturteils in die Dialo
EXPORTING
I_VALDAT = "Date and Time, Current (Application Server) Date
* I_API_INI_TAB = "
* I_API_OUP_TAB = "
* I_API_OUA_TAB = "
* I_API_OUS_TAB = "
* I_API_OUM_TAB = "
* I_API_OUI_TAB = "
* I_API_CLI_TAB = "
* I_API_CMP_TAB = "
I_LEVEL = "DE-EN-LANG-SWITCH-NO-TRANSLATION
I_VIEW = "Character Field of Length 10
* I_OUTPUT = "RMS-FRM: Object Identifier
* I_NO_IS_OUTPUT_CHK = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_API_INP_TAB = "
* I_API_INA_TAB = "
* I_API_INS_TAB = "
* I_API_INM_TAB = "

IMPORTING
E_IO_TAB = "
.



IMPORTING Parameters details for FRML170_TRANSM_API_STRUCT_PART

I_VALDAT - Date and Time, Current (Application Server) Date

Data type: SY-DATUM
Optional: No
Call by Reference: Yes

I_API_INI_TAB -

Data type: FRM31_INI_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_OUP_TAB -

Data type: FRM31_OUP_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_OUA_TAB -

Data type: FRM31_OUA_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_OUS_TAB -

Data type: FRM31_OUS_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_OUM_TAB -

Data type: FRM31_OUM_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_OUI_TAB -

Data type: FRM31_OUI_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_CLI_TAB -

Data type: FRM31_CLI_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_CMP_TAB -

Data type: FRM31_CMP_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_LEVEL - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: FRMLC01-FRML_LEVEL
Optional: No
Call by Reference: Yes

I_VIEW - Character Field of Length 10

Data type: FRM10_TEXT
Optional: No
Call by Reference: Yes

I_OUTPUT - RMS-FRM: Object Identifier

Data type: FRMLE_RECN
Optional: Yes
Call by Reference: Yes

I_NO_IS_OUTPUT_CHK - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: FRMLE_FLAG
Optional: Yes
Call by Reference: Yes

I_API_INP_TAB -

Data type: FRM31_INP_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_INA_TAB -

Data type: FRM31_INA_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_INS_TAB -

Data type: FRM31_INS_TAB_TYPE
Optional: Yes
Call by Reference: Yes

I_API_INM_TAB -

Data type: FRM31_INM_TAB_TYPE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FRML170_TRANSM_API_STRUCT_PART

E_IO_TAB -

Data type: FRM10_IOT_SRC_TAB
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FRML170_TRANSM_API_STRUCT_PART 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_io_tab  TYPE FRM10_IOT_SRC_TAB, "   
lv_i_valdat  TYPE SY-DATUM, "   
lv_i_api_ini_tab  TYPE FRM31_INI_TAB_TYPE, "   
lv_i_api_oup_tab  TYPE FRM31_OUP_TAB_TYPE, "   
lv_i_api_oua_tab  TYPE FRM31_OUA_TAB_TYPE, "   
lv_i_api_ous_tab  TYPE FRM31_OUS_TAB_TYPE, "   
lv_i_api_oum_tab  TYPE FRM31_OUM_TAB_TYPE, "   
lv_i_api_oui_tab  TYPE FRM31_OUI_TAB_TYPE, "   
lv_i_api_cli_tab  TYPE FRM31_CLI_TAB_TYPE, "   
lv_i_api_cmp_tab  TYPE FRM31_CMP_TAB_TYPE, "   
lv_i_level  TYPE FRMLC01-FRML_LEVEL, "   
lv_i_view  TYPE FRM10_TEXT, "   
lv_i_output  TYPE FRMLE_RECN, "   
lv_i_no_is_output_chk  TYPE FRMLE_FLAG, "   
lv_i_api_inp_tab  TYPE FRM31_INP_TAB_TYPE, "   
lv_i_api_ina_tab  TYPE FRM31_INA_TAB_TYPE, "   
lv_i_api_ins_tab  TYPE FRM31_INS_TAB_TYPE, "   
lv_i_api_inm_tab  TYPE FRM31_INM_TAB_TYPE. "   

  CALL FUNCTION 'FRML170_TRANSM_API_STRUCT_PART'  "NOTRANSL: RMS-FRM: Übertragen der API-Daten des Strukturteils in die Dialo
    EXPORTING
         I_VALDAT = lv_i_valdat
         I_API_INI_TAB = lv_i_api_ini_tab
         I_API_OUP_TAB = lv_i_api_oup_tab
         I_API_OUA_TAB = lv_i_api_oua_tab
         I_API_OUS_TAB = lv_i_api_ous_tab
         I_API_OUM_TAB = lv_i_api_oum_tab
         I_API_OUI_TAB = lv_i_api_oui_tab
         I_API_CLI_TAB = lv_i_api_cli_tab
         I_API_CMP_TAB = lv_i_api_cmp_tab
         I_LEVEL = lv_i_level
         I_VIEW = lv_i_view
         I_OUTPUT = lv_i_output
         I_NO_IS_OUTPUT_CHK = lv_i_no_is_output_chk
         I_API_INP_TAB = lv_i_api_inp_tab
         I_API_INA_TAB = lv_i_api_ina_tab
         I_API_INS_TAB = lv_i_api_ins_tab
         I_API_INM_TAB = lv_i_api_inm_tab
    IMPORTING
         E_IO_TAB = lv_e_io_tab
. " FRML170_TRANSM_API_STRUCT_PART




ABAP code using 7.40 inline data declarations to call FM FRML170_TRANSM_API_STRUCT_PART

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 DATUM FROM SY INTO @DATA(ld_i_valdat).
 
 
 
 
 
 
 
 
 
"SELECT single FRML_LEVEL FROM FRMLC01 INTO @DATA(ld_i_level).
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!