SAP CBIH_VE04_LIST_DISPLAY_WV Function Module for









CBIH_VE04_LIST_DISPLAY_WV is a standard cbih ve04 list display wv 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 cbih ve04 list display wv FM, simply by entering the name CBIH_VE04_LIST_DISPLAY_WV into the relevant SAP transaction such as SE37 or SE38.

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



Function CBIH_VE04_LIST_DISPLAY_WV 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 'CBIH_VE04_LIST_DISPLAY_WV'"
EXPORTING
* I_PF_STATUS_FUNC = 'CBIH_VE04_SET_PF_ST' "
* I_USER_COMMAND_FUNC = 'CBIH_VE04_USER_COMM' "
* I_LAYOUT_CHANGE_FUNC = 'CBIH_VE04_LAYSET_WV' "
* I_MASTERSTRUCT_NAME = 'CCIHS_ERWVHITM' "
* I_SLAVESTRUCT_NAME = 'CCIHS_ERWVHITVERS' "

TABLES
X_IOTAB = "
E_MASTERTAB = "
E_SLAVETAB = "

EXCEPTIONS
MASTER_SLAVE_ERROR = 1 LIST_DISPL_ERROR = 2 NO_ERID = 3
.



IMPORTING Parameters details for CBIH_VE04_LIST_DISPLAY_WV

I_PF_STATUS_FUNC -

Data type: TFDIR-FUNCNAME
Default: 'CBIH_VE04_SET_PF_ST'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_USER_COMMAND_FUNC -

Data type: TFDIR-FUNCNAME
Default: 'CBIH_VE04_USER_COMM'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_LAYOUT_CHANGE_FUNC -

Data type: TFDIR-FUNCNAME
Default: 'CBIH_VE04_LAYSET_WV'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_MASTERSTRUCT_NAME -

Data type: DCOBJDEF-NAME
Default: 'CCIHS_ERWVHITM'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_SLAVESTRUCT_NAME -

Data type: DCOBJDEF-NAME
Default: 'CCIHS_ERWVHITVERS'
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for CBIH_VE04_LIST_DISPLAY_WV

X_IOTAB -

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

E_MASTERTAB -

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

E_SLAVETAB -

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

EXCEPTIONS details

MASTER_SLAVE_ERROR -

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

LIST_DISPL_ERROR -

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

NO_ERID -

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

Copy and paste ABAP code example for CBIH_VE04_LIST_DISPLAY_WV 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:
lt_x_iotab  TYPE STANDARD TABLE OF CCIHS_ERHIOT, "   
lv_i_pf_status_func  TYPE TFDIR-FUNCNAME, "   'CBIH_VE04_SET_PF_ST'
lv_master_slave_error  TYPE TFDIR, "   
lt_e_mastertab  TYPE STANDARD TABLE OF CCIHS_ERWVHITM, "   
lv_list_displ_error  TYPE CCIHS_ERWVHITM, "   
lv_i_user_command_func  TYPE TFDIR-FUNCNAME, "   'CBIH_VE04_USER_COMM'
lv_no_erid  TYPE TFDIR, "   
lt_e_slavetab  TYPE STANDARD TABLE OF CCIHS_ERWVHITVERS, "   
lv_i_layout_change_func  TYPE TFDIR-FUNCNAME, "   'CBIH_VE04_LAYSET_WV'
lv_i_masterstruct_name  TYPE DCOBJDEF-NAME, "   'CCIHS_ERWVHITM'
lv_i_slavestruct_name  TYPE DCOBJDEF-NAME. "   'CCIHS_ERWVHITVERS'

  CALL FUNCTION 'CBIH_VE04_LIST_DISPLAY_WV'  "
    EXPORTING
         I_PF_STATUS_FUNC = lv_i_pf_status_func
         I_USER_COMMAND_FUNC = lv_i_user_command_func
         I_LAYOUT_CHANGE_FUNC = lv_i_layout_change_func
         I_MASTERSTRUCT_NAME = lv_i_masterstruct_name
         I_SLAVESTRUCT_NAME = lv_i_slavestruct_name
    TABLES
         X_IOTAB = lt_x_iotab
         E_MASTERTAB = lt_e_mastertab
         E_SLAVETAB = lt_e_slavetab
    EXCEPTIONS
        MASTER_SLAVE_ERROR = 1
        LIST_DISPL_ERROR = 2
        NO_ERID = 3
. " CBIH_VE04_LIST_DISPLAY_WV




ABAP code using 7.40 inline data declarations to call FM CBIH_VE04_LIST_DISPLAY_WV

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 FUNCNAME FROM TFDIR INTO @DATA(ld_i_pf_status_func).
DATA(ld_i_pf_status_func) = 'CBIH_VE04_SET_PF_ST'.
 
 
 
 
"SELECT single FUNCNAME FROM TFDIR INTO @DATA(ld_i_user_command_func).
DATA(ld_i_user_command_func) = 'CBIH_VE04_USER_COMM'.
 
 
 
"SELECT single FUNCNAME FROM TFDIR INTO @DATA(ld_i_layout_change_func).
DATA(ld_i_layout_change_func) = 'CBIH_VE04_LAYSET_WV'.
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_i_masterstruct_name).
DATA(ld_i_masterstruct_name) = 'CCIHS_ERWVHITM'.
 
"SELECT single NAME FROM DCOBJDEF INTO @DATA(ld_i_slavestruct_name).
DATA(ld_i_slavestruct_name) = 'CCIHS_ERWVHITVERS'.
 


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!