SAP FRML112_LOG_BUFFER Function Module for NOTRANSL: RMS-FRM: Puffer für Logfiles









FRML112_LOG_BUFFER is a standard frml112 log 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: Puffer für Logfiles 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 frml112 log buffer FM, simply by entering the name FRML112_LOG_BUFFER into the relevant SAP transaction such as SE37 or SE38.

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



Function FRML112_LOG_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 'FRML112_LOG_BUFFER'"NOTRANSL: RMS-FRM: Puffer für Logfiles
EXPORTING
I_LOG = "Application Log: Log header data
* I_FLG_BUF_INSERT = ESP1_FALSE "
* I_FLG_GET_WHOLE_BUF = ESP1_FALSE "

IMPORTING
E_FLG_LOG_EXISTS = "

CHANGING
* X_LOG_HANDLE = "Application Log: Log Handle
* X_LOG_HANDLE_TAB = "Application Log: Log Handle Table
.



IMPORTING Parameters details for FRML112_LOG_BUFFER

I_LOG - Application Log: Log header data

Data type: BAL_S_LOG
Optional: No
Call by Reference: No ( called with pass by value option)

I_FLG_BUF_INSERT -

Data type: ESP1_BOOLEAN
Default: ESP1_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_GET_WHOLE_BUF -

Data type: ESP1_BOOLEAN
Default: ESP1_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FRML112_LOG_BUFFER

E_FLG_LOG_EXISTS -

Data type: ESP1_BOOLEAN
Optional: No
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for FRML112_LOG_BUFFER

X_LOG_HANDLE - Application Log: Log Handle

Data type: BALLOGHNDL
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_LOG_HANDLE_TAB - Application Log: Log Handle Table

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

Copy and paste ABAP code example for FRML112_LOG_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_log  TYPE BAL_S_LOG, "   
lv_x_log_handle  TYPE BALLOGHNDL, "   
lv_e_flg_log_exists  TYPE ESP1_BOOLEAN, "   
lv_i_flg_buf_insert  TYPE ESP1_BOOLEAN, "   ESP1_FALSE
lv_x_log_handle_tab  TYPE BAL_T_LOGH, "   
lv_i_flg_get_whole_buf  TYPE ESP1_BOOLEAN. "   ESP1_FALSE

  CALL FUNCTION 'FRML112_LOG_BUFFER'  "NOTRANSL: RMS-FRM: Puffer für Logfiles
    EXPORTING
         I_LOG = lv_i_log
         I_FLG_BUF_INSERT = lv_i_flg_buf_insert
         I_FLG_GET_WHOLE_BUF = lv_i_flg_get_whole_buf
    IMPORTING
         E_FLG_LOG_EXISTS = lv_e_flg_log_exists
    CHANGING
         X_LOG_HANDLE = lv_x_log_handle
         X_LOG_HANDLE_TAB = lv_x_log_handle_tab
. " FRML112_LOG_BUFFER




ABAP code using 7.40 inline data declarations to call FM FRML112_LOG_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.

 
 
 
DATA(ld_i_flg_buf_insert) = ESP1_FALSE.
 
 
DATA(ld_i_flg_get_whole_buf) = ESP1_FALSE.
 


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!