SAP CO_VB_ORDER_PRINT Function Module for NOTRANSL: Durchführen des Druckes der Listen im Verbucher









CO_VB_ORDER_PRINT is a standard co vb order print 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: Durchführen des Druckes der Listen im Verbucher 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 co vb order print FM, simply by entering the name CO_VB_ORDER_PRINT into the relevant SAP transaction such as SE37 or SE38.

Function Group: COVB
Program Name: SAPLCOVB
Main Program: SAPLCOVB
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1



Function CO_VB_ORDER_PRINT 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 'CO_VB_ORDER_PRINT'"NOTRANSL: Durchführen des Druckes der Listen im Verbucher
EXPORTING
I_AFFHD_TAB = "
I_RESBD_TAB = "
I_TTL_ACT_TAB = "
I_WORK_TAB = "
I_KBEDP_TAB = "
I_COLORD_TAB = "
I_RSEROB_TAB = "
I_AFDLD_TAB = "
I_AFFLD_TAB = "
I_AFPOD_TAB = "
I_AFVGD_TAB = "
I_CAUFVD_TAB = "
I_CONFIG_TAB = "
I_ITAB = "
I_MAT_TAB = "
I_PRINT_CO_TAB = "
.



IMPORTING Parameters details for CO_VB_ORDER_PRINT

I_AFFHD_TAB -

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

I_RESBD_TAB -

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

I_TTL_ACT_TAB -

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

I_WORK_TAB -

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

I_KBEDP_TAB -

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

I_COLORD_TAB -

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

I_RSEROB_TAB -

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

I_AFDLD_TAB -

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

I_AFFLD_TAB -

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

I_AFPOD_TAB -

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

I_AFVGD_TAB -

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

I_CAUFVD_TAB -

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

I_CONFIG_TAB -

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

I_ITAB -

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

I_MAT_TAB -

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

I_PRINT_CO_TAB -

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

Copy and paste ABAP code example for CO_VB_ORDER_PRINT 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_affhd_tab  TYPE CO_AFFHD_TAB, "   
lv_i_resbd_tab  TYPE CO_RESBD_TAB, "   
lv_i_ttl_act_tab  TYPE CO_SFCTTL_ACT_TAB, "   
lv_i_work_tab  TYPE CO_RCR01_TAB, "   
lv_i_kbedp_tab  TYPE CO_KBEDP_TAB, "   
lv_i_colord_tab  TYPE CO_PPPRCOLORD_TAB, "   
lv_i_rserob_tab  TYPE CO_RSEROB_TAB, "   
lv_i_afdld_tab  TYPE CO_AFDLD_TAB, "   
lv_i_affld_tab  TYPE CO_AFFLD_TAB, "   
lv_i_afpod_tab  TYPE CO_AFPOD_TAB, "   
lv_i_afvgd_tab  TYPE CO_AFVGD_TAB, "   
lv_i_caufvd_tab  TYPE CO_CAUFVD_TAB, "   
lv_i_config_tab  TYPE CO_SFC_CONF_TAB, "   
lv_i_itab  TYPE CO_SFC_ITAB_TAB, "   
lv_i_mat_tab  TYPE CO_SFCMATDR_TAB, "   
lv_i_print_co_tab  TYPE CO_PRINT_CO_TAB. "   

  CALL FUNCTION 'CO_VB_ORDER_PRINT'  "NOTRANSL: Durchführen des Druckes der Listen im Verbucher
    EXPORTING
         I_AFFHD_TAB = lv_i_affhd_tab
         I_RESBD_TAB = lv_i_resbd_tab
         I_TTL_ACT_TAB = lv_i_ttl_act_tab
         I_WORK_TAB = lv_i_work_tab
         I_KBEDP_TAB = lv_i_kbedp_tab
         I_COLORD_TAB = lv_i_colord_tab
         I_RSEROB_TAB = lv_i_rserob_tab
         I_AFDLD_TAB = lv_i_afdld_tab
         I_AFFLD_TAB = lv_i_affld_tab
         I_AFPOD_TAB = lv_i_afpod_tab
         I_AFVGD_TAB = lv_i_afvgd_tab
         I_CAUFVD_TAB = lv_i_caufvd_tab
         I_CONFIG_TAB = lv_i_config_tab
         I_ITAB = lv_i_itab
         I_MAT_TAB = lv_i_mat_tab
         I_PRINT_CO_TAB = lv_i_print_co_tab
. " CO_VB_ORDER_PRINT




ABAP code using 7.40 inline data declarations to call FM CO_VB_ORDER_PRINT

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.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!