SAP MCV_STATISTICS_SADRLST_COMP Function Module for NOTRANSL: Vorverdichten/Anreichern Adreßbestand









MCV_STATISTICS_SADRLST_COMP is a standard mcv statistics sadrlst comp 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: Vorverdichten/Anreichern Adreßbestand 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 mcv statistics sadrlst comp FM, simply by entering the name MCV_STATISTICS_SADRLST_COMP into the relevant SAP transaction such as SE37 or SE38.

Function Group: MCV2
Program Name: SAPLMCV2
Main Program:
Appliation area: V
Release date: 01-Jan-1970
Mode(Normal, Remote etc): Normal Function Module
Update:



Function MCV_STATISTICS_SADRLST_COMP 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 'MCV_STATISTICS_SADRLST_COMP'"NOTRANSL: Vorverdichten/Anreichern Adreßbestand
EXPORTING
FI_VBKA = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FI_SADLSTCNT_OLD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FI_SADLSTCNT_NEW = "
FI_SADLSTRECH_INS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FI_SADLSTRECB_INS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FI_SADLSTRECH_DEL = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FI_SADLSTRECB_DEL = "DE-EN-LANG-SWITCH-NO-TRANSLATION

IMPORTING
FE_MCSADLSTCB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FE_MCADRLSTB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
.




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_SAPLMCV2_001 SIS: User Exit Contacts/Sales Activities

IMPORTING Parameters details for MCV_STATISTICS_SADRLST_COMP

FI_VBKA - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FI_SADLSTCNT_OLD - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FI_SADLSTCNT_NEW -

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

FI_SADLSTRECH_INS - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: MCV2_TSADLSTRECH
Optional: No
Call by Reference: Yes

FI_SADLSTRECB_INS - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: MCV2_TSADLSTRECB
Optional: No
Call by Reference: Yes

FI_SADLSTRECH_DEL - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: MCV2_TSADLSTRECH
Optional: No
Call by Reference: Yes

FI_SADLSTRECB_DEL - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: MCV2_TSADLSTRECB
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for MCV_STATISTICS_SADRLST_COMP

FE_MCSADLSTCB - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

FE_MCADRLSTB - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: MCV2_TMCADRLSTB
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for MCV_STATISTICS_SADRLST_COMP 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_fi_vbka  TYPE MCV2_SVBKAVB, "   
lv_fe_mcsadlstcb  TYPE MCV2_TMCSADLSTCB, "   
lv_fe_mcadrlstb  TYPE MCV2_TMCADRLSTB, "   
lv_fi_sadlstcnt_old  TYPE MCV2_TSADLSTCNT, "   
lv_fi_sadlstcnt_new  TYPE MCV2_TSADLSTCNT, "   
lv_fi_sadlstrech_ins  TYPE MCV2_TSADLSTRECH, "   
lv_fi_sadlstrecb_ins  TYPE MCV2_TSADLSTRECB, "   
lv_fi_sadlstrech_del  TYPE MCV2_TSADLSTRECH, "   
lv_fi_sadlstrecb_del  TYPE MCV2_TSADLSTRECB. "   

  CALL FUNCTION 'MCV_STATISTICS_SADRLST_COMP'  "NOTRANSL: Vorverdichten/Anreichern Adreßbestand
    EXPORTING
         FI_VBKA = lv_fi_vbka
         FI_SADLSTCNT_OLD = lv_fi_sadlstcnt_old
         FI_SADLSTCNT_NEW = lv_fi_sadlstcnt_new
         FI_SADLSTRECH_INS = lv_fi_sadlstrech_ins
         FI_SADLSTRECB_INS = lv_fi_sadlstrecb_ins
         FI_SADLSTRECH_DEL = lv_fi_sadlstrech_del
         FI_SADLSTRECB_DEL = lv_fi_sadlstrecb_del
    IMPORTING
         FE_MCSADLSTCB = lv_fe_mcsadlstcb
         FE_MCADRLSTB = lv_fe_mcadrlstb
. " MCV_STATISTICS_SADRLST_COMP




ABAP code using 7.40 inline data declarations to call FM MCV_STATISTICS_SADRLST_COMP

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!