SAP FRML172_DIALOG_BUFFER Function Module for NOTRANSL: RMS-FRM: Puffern der Laufzeitdaten zur Teilsicht









FRML172_DIALOG_BUFFER is a standard frml172 dialog buffer 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: Puffern der Laufzeitdaten zur Teilsicht 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 frml172 dialog buffer FM, simply by entering the name FRML172_DIALOG_BUFFER into the relevant SAP transaction such as SE37 or SE38.

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



Function FRML172_DIALOG_BUFFER 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 'FRML172_DIALOG_BUFFER'"NOTRANSL: RMS-FRM: Puffern der Laufzeitdaten zur Teilsicht
EXPORTING
I_VALDAT = "Date and Time, Current (Application Server) Date
* I_FLG_GET = "General Flag
* I_FLG_RESET = "General Flag
I_FRML_RECN = "RMS-FRM: Object Identifier
I_LEVEL = "Formula View
I_VIEW = "Subview
* I_REF_QTY = "Base Quantity of a Formula
* I_REF_UNIT = "Base Unit of Measure of a Formula
* IS_SUM = "RMS-FRM: Structure with Totals
* IT_API_ADD = "
* I_FLG_ADD = "General Flag

IMPORTING
E_FLG_CHANGE = "General Flag
E_REF_QTY = "Quantity of a Material or Substance Item
E_REF_UNIT = "Unit of Measure
ES_SUM = "RMS-FRM: Structure with Totals
ET_API_ADD = "
.



IMPORTING Parameters details for FRML172_DIALOG_BUFFER

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

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

I_FLG_GET - General Flag

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

I_FLG_RESET - General Flag

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

I_FRML_RECN - RMS-FRM: Object Identifier

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

I_LEVEL - Formula View

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

I_VIEW - Subview

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

I_REF_QTY - Base Quantity of a Formula

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

I_REF_UNIT - Base Unit of Measure of a Formula

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

IS_SUM - RMS-FRM: Structure with Totals

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

IT_API_ADD -

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

I_FLG_ADD - General Flag

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

EXPORTING Parameters details for FRML172_DIALOG_BUFFER

E_FLG_CHANGE - General Flag

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

E_REF_QTY - Quantity of a Material or Substance Item

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

E_REF_UNIT - Unit of Measure

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

ES_SUM - RMS-FRM: Structure with Totals

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

ET_API_ADD -

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

Copy and paste ABAP code example for FRML172_DIALOG_BUFFER 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_i_valdat  TYPE SYDATUM, "   
lv_e_flg_change  TYPE FLAG, "   
lv_i_flg_get  TYPE FLAG, "   
lv_i_flg_reset  TYPE FLAG, "   
lv_e_ref_qty  TYPE FRMLE_COMPTGT, "   
lv_i_frml_recn  TYPE FRMLE_RECN, "   
lv_i_level  TYPE FRMLC01-FRML_LEVEL, "   
lv_e_ref_unit  TYPE FRMLE_UNIT, "   
lv_es_sum  TYPE FRMLS_IOT_SUM_VALUE, "   
lv_i_view  TYPE FRM10_TEXT, "   
lv_i_ref_qty  TYPE FRMLE_COMPTGT, "   
lv_et_api_add  TYPE FRM10_IOT_SCR_TAB, "   
lv_i_ref_unit  TYPE FRMLE_UNIT, "   
lv_is_sum  TYPE FRMLS_IOT_SUM_VALUE, "   
lv_it_api_add  TYPE FRM10_IOT_SCR_TAB, "   
lv_i_flg_add  TYPE FLAG. "   

  CALL FUNCTION 'FRML172_DIALOG_BUFFER'  "NOTRANSL: RMS-FRM: Puffern der Laufzeitdaten zur Teilsicht
    EXPORTING
         I_VALDAT = lv_i_valdat
         I_FLG_GET = lv_i_flg_get
         I_FLG_RESET = lv_i_flg_reset
         I_FRML_RECN = lv_i_frml_recn
         I_LEVEL = lv_i_level
         I_VIEW = lv_i_view
         I_REF_QTY = lv_i_ref_qty
         I_REF_UNIT = lv_i_ref_unit
         IS_SUM = lv_is_sum
         IT_API_ADD = lv_it_api_add
         I_FLG_ADD = lv_i_flg_add
    IMPORTING
         E_FLG_CHANGE = lv_e_flg_change
         E_REF_QTY = lv_e_ref_qty
         E_REF_UNIT = lv_e_ref_unit
         ES_SUM = lv_es_sum
         ET_API_ADD = lv_et_api_add
. " FRML172_DIALOG_BUFFER




ABAP code using 7.40 inline data declarations to call FM FRML172_DIALOG_BUFFER

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 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!