SAP FVIA_DISPLAY_VIBEPP Function Module for









FVIA_DISPLAY_VIBEPP is a standard fvia display vibepp 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 fvia display vibepp FM, simply by entering the name FVIA_DISPLAY_VIBEPP into the relevant SAP transaction such as SE37 or SE38.

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



Function FVIA_DISPLAY_VIBEPP 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 'FVIA_DISPLAY_VIBEPP'"
EXPORTING
I_IMKEY = "
* I_INTRENO = ' ' "
* I_WAERS = ' ' "
* I_ONLY_I = ' ' "
* I_MARK_NACHBUCH = 'X' "
* I_INCL_ZUSCHUSS = ' ' "
* I_MULTI_OBJ = ' ' "

TABLES
* T_GVIBEPP = "
* T_VZZBEPP = "
* T_VIZNRN = "Table of Objects
* T_RVIBEPP = "
.



IMPORTING Parameters details for FVIA_DISPLAY_VIBEPP

I_IMKEY -

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

I_INTRENO -

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

I_WAERS -

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

I_ONLY_I -

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

I_MARK_NACHBUCH -

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

I_INCL_ZUSCHUSS -

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

I_MULTI_OBJ -

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

TABLES Parameters details for FVIA_DISPLAY_VIBEPP

T_GVIBEPP -

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

T_VZZBEPP -

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

T_VIZNRN - Table of Objects

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

T_RVIBEPP -

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

Copy and paste ABAP code example for FVIA_DISPLAY_VIBEPP 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_imkey  TYPE VIBEPP-IMKEY, "   
lt_t_gvibepp  TYPE STANDARD TABLE OF GVIBEPP, "   
lv_i_intreno  TYPE VIBEPP-INTRENO, "   SPACE
lt_t_vzzbepp  TYPE STANDARD TABLE OF VZZBEPP, "   
lv_i_waers  TYPE VIBEPP-SCWHR, "   SPACE
lt_t_viznrn  TYPE STANDARD TABLE OF VIZNRN, "   
lv_i_only_i  TYPE VIZNRN, "   SPACE
lt_t_rvibepp  TYPE STANDARD TABLE OF RVIBEPP, "   
lv_i_mark_nachbuch  TYPE RVIBEPP, "   'X'
lv_i_incl_zuschuss  TYPE RVIBEPP, "   SPACE
lv_i_multi_obj  TYPE RVIBEPP. "   SPACE

  CALL FUNCTION 'FVIA_DISPLAY_VIBEPP'  "
    EXPORTING
         I_IMKEY = lv_i_imkey
         I_INTRENO = lv_i_intreno
         I_WAERS = lv_i_waers
         I_ONLY_I = lv_i_only_i
         I_MARK_NACHBUCH = lv_i_mark_nachbuch
         I_INCL_ZUSCHUSS = lv_i_incl_zuschuss
         I_MULTI_OBJ = lv_i_multi_obj
    TABLES
         T_GVIBEPP = lt_t_gvibepp
         T_VZZBEPP = lt_t_vzzbepp
         T_VIZNRN = lt_t_viznrn
         T_RVIBEPP = lt_t_rvibepp
. " FVIA_DISPLAY_VIBEPP




ABAP code using 7.40 inline data declarations to call FM FVIA_DISPLAY_VIBEPP

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 IMKEY FROM VIBEPP INTO @DATA(ld_i_imkey).
 
 
"SELECT single INTRENO FROM VIBEPP INTO @DATA(ld_i_intreno).
DATA(ld_i_intreno) = ' '.
 
 
"SELECT single SCWHR FROM VIBEPP INTO @DATA(ld_i_waers).
DATA(ld_i_waers) = ' '.
 
 
DATA(ld_i_only_i) = ' '.
 
 
DATA(ld_i_mark_nachbuch) = 'X'.
 
DATA(ld_i_incl_zuschuss) = ' '.
 
DATA(ld_i_multi_obj) = ' '.
 


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!