SAP FRML552_STREAM_USE Function Module for NOTRANSL: Intermediatposition verwenden
FRML552_STREAM_USE is a standard frml552 stream use 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: Intermediatposition verwenden 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 frml552 stream use FM, simply by entering the name FRML552_STREAM_USE into the relevant SAP transaction such as SE37 or SE38.
Function Group: FRML552
Program Name: SAPLFRML552
Main Program: SAPLFRML552
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FRML552_STREAM_USE 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 'FRML552_STREAM_USE'"NOTRANSL: Intermediatposition verwenden.
EXPORTING
* I_MT_OUTTAB = "RMS-FRM: Screen Structure for LoM - LoRS
* I_MT_HIDDEN = "RMS-FRM: Screen Structure for LoM - LoRS
* I_MT_OUT_TAB = "RMS-FRM: Screen Structure for LoM - LoRS
* I_CURR_OBJ = "RMS-FRM: WBO - Structure for Object Key Fields
* I_NO_F4_HELP = ' ' "Customizing: General Indicator
IMPORTING
E_ERR_FLG = "Error Indicator
CHANGING
XS_CURRENT_LINE = "RMS-FRM: Screen Structure for LoM - LoRS
EXCEPTIONS
ERROR_USING_STREAM = 1
IMPORTING Parameters details for FRML552_STREAM_USE
I_MT_OUTTAB - RMS-FRM: Screen Structure for LoM - LoRS
Data type: FRMLTY_IOT_SCROptional: Yes
Call by Reference: Yes
I_MT_HIDDEN - RMS-FRM: Screen Structure for LoM - LoRS
Data type: FRMLTY_IOT_SCROptional: Yes
Call by Reference: Yes
I_MT_OUT_TAB - RMS-FRM: Screen Structure for LoM - LoRS
Data type: FRMLTY_IOT_SCROptional: Yes
Call by Reference: Yes
I_CURR_OBJ - RMS-FRM: WBO - Structure for Object Key Fields
Data type: FRMLS_WBO_OBJOptional: Yes
Call by Reference: Yes
I_NO_F4_HELP - Customizing: General Indicator
Data type: FRMLE_FLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FRML552_STREAM_USE
E_ERR_FLG - Error Indicator
Data type: FRMLE_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for FRML552_STREAM_USE
XS_CURRENT_LINE - RMS-FRM: Screen Structure for LoM - LoRS
Data type: FRMLS_IOT_SCROptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERROR_USING_STREAM - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FRML552_STREAM_USE 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_err_flg | TYPE FRMLE_FLAG, " | |||
| lv_i_mt_outtab | TYPE FRMLTY_IOT_SCR, " | |||
| lv_xs_current_line | TYPE FRMLS_IOT_SCR, " | |||
| lv_error_using_stream | TYPE FRMLS_IOT_SCR, " | |||
| lv_i_mt_hidden | TYPE FRMLTY_IOT_SCR, " | |||
| lv_i_mt_out_tab | TYPE FRMLTY_IOT_SCR, " | |||
| lv_i_curr_obj | TYPE FRMLS_WBO_OBJ, " | |||
| lv_i_no_f4_help | TYPE FRMLE_FLAG. " SPACE |
|   CALL FUNCTION 'FRML552_STREAM_USE' "NOTRANSL: Intermediatposition verwenden |
| EXPORTING | ||
| I_MT_OUTTAB | = lv_i_mt_outtab | |
| I_MT_HIDDEN | = lv_i_mt_hidden | |
| I_MT_OUT_TAB | = lv_i_mt_out_tab | |
| I_CURR_OBJ | = lv_i_curr_obj | |
| I_NO_F4_HELP | = lv_i_no_f4_help | |
| IMPORTING | ||
| E_ERR_FLG | = lv_e_err_flg | |
| CHANGING | ||
| XS_CURRENT_LINE | = lv_xs_current_line | |
| EXCEPTIONS | ||
| ERROR_USING_STREAM = 1 | ||
| . " FRML552_STREAM_USE | ||
ABAP code using 7.40 inline data declarations to call FM FRML552_STREAM_USE
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.| DATA(ld_i_no_f4_help) | = ' '. | |||
Search for further information about these or an SAP related objects