SAP RV_SALES_DOCUMENT_STATISTIC Function Module for Sales document information for statistics
RV_SALES_DOCUMENT_STATISTIC is a standard rv sales document statistic SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Sales document information for statistics 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 sales document statistic FM, simply by entering the name RV_SALES_DOCUMENT_STATISTIC into the relevant SAP transaction such as SE37 or SE38.
Function Group: V05M
Program Name: SAPLV05M
Main Program:
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RV_SALES_DOCUMENT_STATISTIC 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_SALES_DOCUMENT_STATISTIC'"Sales document information for statistics.
EXPORTING
VBCOM = "
TABLES
ITAB_SPART = "
ITAB_VKBUR = "
ITAB_VKGRP = "
ITAB_VKORG = "
ITAB_VTWEG = "
LVBSTA = "
IMPORTING Parameters details for RV_SALES_DOCUMENT_STATISTIC
VBCOM -
Data type: VBCOMOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RV_SALES_DOCUMENT_STATISTIC
ITAB_SPART -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ITAB_VKBUR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ITAB_VKGRP -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ITAB_VKORG -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ITAB_VTWEG -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
LVBSTA -
Data type: VBSTAOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RV_SALES_DOCUMENT_STATISTIC 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_vbcom | TYPE VBCOM, " | |||
| lt_itab_spart | TYPE STANDARD TABLE OF VBCOM, " | |||
| lt_itab_vkbur | TYPE STANDARD TABLE OF VBCOM, " | |||
| lt_itab_vkgrp | TYPE STANDARD TABLE OF VBCOM, " | |||
| lt_itab_vkorg | TYPE STANDARD TABLE OF VBCOM, " | |||
| lt_itab_vtweg | TYPE STANDARD TABLE OF VBCOM, " | |||
| lt_lvbsta | TYPE STANDARD TABLE OF VBSTA. " |
|   CALL FUNCTION 'RV_SALES_DOCUMENT_STATISTIC' "Sales document information for statistics |
| EXPORTING | ||
| VBCOM | = lv_vbcom | |
| TABLES | ||
| ITAB_SPART | = lt_itab_spart | |
| ITAB_VKBUR | = lt_itab_vkbur | |
| ITAB_VKGRP | = lt_itab_vkgrp | |
| ITAB_VKORG | = lt_itab_vkorg | |
| ITAB_VTWEG | = lt_itab_vtweg | |
| LVBSTA | = lt_ltbsta | |
| . " RV_SALES_DOCUMENT_STATISTIC | ||
ABAP code using 7.40 inline data declarations to call FM RV_SALES_DOCUMENT_STATISTIC
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