SAP RHOM_WRITE_INFTY_BUFFERED Function Module for









RHOM_WRITE_INFTY_BUFFERED is a standard rhom write infty buffered SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 rhom write infty buffered FM, simply by entering the name RHOM_WRITE_INFTY_BUFFERED into the relevant SAP transaction such as SE37 or SE38.

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



Function RHOM_WRITE_INFTY_BUFFERED 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 'RHOM_WRITE_INFTY_BUFFERED'"
EXPORTING
* FCODE = 'INSE' "
* NEW_LANGU = "
* UPDATE_DB = "
* WORST_MSGTY = "Messages, Message Type
* KEEP_TRANSLATIONS = "
* SUPPRESS_DIALOG = '2' "Dialog mode
* SUPPRESS_VACANCY = "
* PLVAR = "
OTYPE = "
OBJID = "
INFTY = "
* SUBTY = "
* ISTAT = '1' "
BEGDA = "
ENDDA = "

TABLES
* INNNN_EXP = "

EXCEPTIONS
NO_ACTIVE_PLVAR = 1 WRITE_ERROR = 2 INFTY_NOT_ALLOWED = 3
.



IMPORTING Parameters details for RHOM_WRITE_INFTY_BUFFERED

FCODE -

Data type: FCODE
Default: 'INSE'
Optional: Yes
Call by Reference: No ( called with pass by value option)

NEW_LANGU -

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

UPDATE_DB -

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

WORST_MSGTY - Messages, Message Type

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

KEEP_TRANSLATIONS -

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

SUPPRESS_DIALOG - Dialog mode

Data type: PPPAR-DSUPR
Default: '2'
Optional: Yes
Call by Reference: No ( called with pass by value option)

SUPPRESS_VACANCY -

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

PLVAR -

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

OTYPE -

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

OBJID -

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

INFTY -

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

SUBTY -

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

ISTAT -

Data type: ISTAT_D
Default: '1'
Optional: Yes
Call by Reference: No ( called with pass by value option)

BEGDA -

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

ENDDA -

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

TABLES Parameters details for RHOM_WRITE_INFTY_BUFFERED

INNNN_EXP -

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

EXCEPTIONS details

NO_ACTIVE_PLVAR -

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

WRITE_ERROR -

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

INFTY_NOT_ALLOWED -

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

Copy and paste ABAP code example for RHOM_WRITE_INFTY_BUFFERED 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_fcode  TYPE FCODE, "   'INSE'
lt_innnn_exp  TYPE STANDARD TABLE OF FCODE, "   
lv_no_active_plvar  TYPE FCODE, "   
lv_new_langu  TYPE SY-LANGU, "   
lv_update_db  TYPE FLAG, "   
lv_worst_msgty  TYPE SYMSGTY, "   
lv_keep_translations  TYPE FLAG, "   
lv_suppress_dialog  TYPE PPPAR-DSUPR, "   '2'
lv_suppress_vacancy  TYPE FLAG, "   
lv_plvar  TYPE PLVAR, "   
lv_write_error  TYPE PLVAR, "   
lv_otype  TYPE OTYPE, "   
lv_infty_not_allowed  TYPE OTYPE, "   
lv_objid  TYPE OTYPE, "   
lv_infty  TYPE INFOTYP, "   
lv_subty  TYPE SUBTYP, "   
lv_istat  TYPE ISTAT_D, "   '1'
lv_begda  TYPE DATS, "   
lv_endda  TYPE DATS. "   

  CALL FUNCTION 'RHOM_WRITE_INFTY_BUFFERED'  "
    EXPORTING
         FCODE = lv_fcode
         NEW_LANGU = lv_new_langu
         UPDATE_DB = lv_update_db
         WORST_MSGTY = lv_worst_msgty
         KEEP_TRANSLATIONS = lv_keep_translations
         SUPPRESS_DIALOG = lv_suppress_dialog
         SUPPRESS_VACANCY = lv_suppress_vacancy
         PLVAR = lv_plvar
         OTYPE = lv_otype
         OBJID = lv_objid
         INFTY = lv_infty
         SUBTY = lv_subty
         ISTAT = lv_istat
         BEGDA = lv_begda
         ENDDA = lv_endda
    TABLES
         INNNN_EXP = lt_innnn_exp
    EXCEPTIONS
        NO_ACTIVE_PLVAR = 1
        WRITE_ERROR = 2
        INFTY_NOT_ALLOWED = 3
. " RHOM_WRITE_INFTY_BUFFERED




ABAP code using 7.40 inline data declarations to call FM RHOM_WRITE_INFTY_BUFFERED

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_fcode) = 'INSE'.
 
 
 
"SELECT single LANGU FROM SY INTO @DATA(ld_new_langu).
 
 
 
 
"SELECT single DSUPR FROM PPPAR INTO @DATA(ld_suppress_dialog).
DATA(ld_suppress_dialog) = '2'.
 
 
 
 
 
 
 
 
 
DATA(ld_istat) = '1'.
 
 
 


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!