SAP RV_XVBFA_MAINTAIN Function Module for NOTRANSL: Pflege der Flußtabelle









RV_XVBFA_MAINTAIN is a standard rv xvbfa maintain 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: Pflege der Flußtabelle 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 rv xvbfa maintain FM, simply by entering the name RV_XVBFA_MAINTAIN into the relevant SAP transaction such as SE37 or SE38.

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



Function RV_XVBFA_MAINTAIN 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 'RV_XVBFA_MAINTAIN'"NOTRANSL: Pflege der Flußtabelle
EXPORTING
FVBFA = "Communication block: VBFA
* FVBFAD = ' ' "
F_VORGANG = "H=create, V=change, L=delete item
* F_ABGRU = ' ' "Reason for Rejection
* I_VBEP_GEFUELLT = ' ' "
* I_DO_NOT_REBUILD_VBAPF = ' ' "

TABLES
* FXVBAPF = "Summarized flow table (is also cha
FXVBFA = "Corresponds to XVBFA
FYVBFA = "Corresponds to YVBFA
* FXVBEP = "
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLV45P_002 User Exit: Transfer of Conditions into Cost

IMPORTING Parameters details for RV_XVBFA_MAINTAIN

FVBFA - Communication block: VBFA

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

FVBFAD -

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

F_VORGANG - H=create, V=change, L=delete item

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

F_ABGRU - Reason for Rejection

Data type: VBAP-ABGRU
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VBEP_GEFUELLT -

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

I_DO_NOT_REBUILD_VBAPF -

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

TABLES Parameters details for RV_XVBFA_MAINTAIN

FXVBAPF - Summarized flow table (is also cha

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

FXVBFA - Corresponds to XVBFA

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

FYVBFA - Corresponds to YVBFA

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

FXVBEP -

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

Copy and paste ABAP code example for RV_XVBFA_MAINTAIN 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_fvbfa  TYPE VBFA, "   
lt_fxvbapf  TYPE STANDARD TABLE OF VBAPF, "   
lv_fvbfad  TYPE VBFAD, "   ' '
lt_fxvbfa  TYPE STANDARD TABLE OF VBFAVB, "   
lt_fyvbfa  TYPE STANDARD TABLE OF VBFAVB, "   
lv_f_vorgang  TYPE VBFAVB, "   
lt_fxvbep  TYPE STANDARD TABLE OF VBEPVB, "   
lv_f_abgru  TYPE VBAP-ABGRU, "   ' '
lv_i_vbep_gefuellt  TYPE C, "   ' '
lv_i_do_not_rebuild_vbapf  TYPE C. "   SPACE

  CALL FUNCTION 'RV_XVBFA_MAINTAIN'  "NOTRANSL: Pflege der Flußtabelle
    EXPORTING
         FVBFA = lv_fvbfa
         FVBFAD = lv_fvbfad
         F_VORGANG = lv_f_vorgang
         F_ABGRU = lv_f_abgru
         I_VBEP_GEFUELLT = lv_i_vbep_gefuellt
         I_DO_NOT_REBUILD_VBAPF = lv_i_do_not_rebuild_vbapf
    TABLES
         FXVBAPF = lt_fxvbapf
         FXVBFA = lt_fxvbfa
         FYVBFA = lt_fyvbfa
         FXVBEP = lt_fxvbep
. " RV_XVBFA_MAINTAIN




ABAP code using 7.40 inline data declarations to call FM RV_XVBFA_MAINTAIN

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_fvbfad) = ' '.
 
 
 
 
 
"SELECT single ABGRU FROM VBAP INTO @DATA(ld_f_abgru).
DATA(ld_f_abgru) = ' '.
 
DATA(ld_i_vbep_gefuellt) = ' '.
 
DATA(ld_i_do_not_rebuild_vbapf) = ' '.
 


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!