SDCAS_CROSS_MATCHING is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Program SDCAS_CROSS_MATCHING determines partners for the specified selection period which have more than one sales activity within this period...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter SDCAS_CROSS_MATCHING into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
VC15 - Crossmatching
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: VTWEG = Distribution channel
Selection Text: VKORG = Sales organization
Selection Text: VKGRP = Sales group
Selection Text: VKBUR = Sales office
Selection Text: VBELN = Sales activity number
Selection Text: SPART = Division
Selection Text: PERNR = Personnel Number
Selection Text: PARNR = Contact Persons
Selection Text: KUNNR = Customer number
Selection Text: KTEXT = Comment
Selection Text: KTAST = Sales activ. status
Selection Text: KTABG = Start of Sales Activity
Selection Text: KTAAR = Sales activity type
Selection Text: ERNAM = Created By
Selection Text: DEL_MARK = @4B@Set sls activ./partners
Title: Crossmatching
Text Symbol: P01 = Roles
Text Symbol: B03 = Organization
Text Symbol: B01 = Sales activity type/date
Text Symbol: B00 = Sales activity partner
INCLUDE RVREUSE_GLOBAL_DATA.
No SAP DATABASE tables are accessed within this REPORT code!
SD_CAS_SELECTION_SCREEN_PARVW CALL FUNCTION 'SD_CAS_SELECTION_SCREEN_PARVW' TABLES FT_PARVW_KUNNR = S_PKUNNR FT_PARVW_PARNR = S_PPARNR FT_PARVW_PERNR = S_PPERNR FT_PARWV_LIFNR = S_PLIFNR EXCEPTIONS OTHERS = 0.
SD_CAS_CROSSCHECK CALL FUNCTION 'SD_CAS_CROSSCHECK' EXPORTING PG_DELETE_MARK = DEL_MARK TABLES VBELN_OPT = VBELN_OPT KTAAR_OPT = KTAAR_OPT KTABG_OPT = KTABG_OPT KTAEN_OPT = KTAEN_OPT KUNNR_OPT = KUNNR_OPT PARNR_OPT = PARNR_OPT PERNR_OPT = PERNR_OPT PARVW_OPT = PARVW_OPT VKORG_OPT = VKORG_OPT SPART_OPT = SPART_OPT VTWEG_OPT = VTWEG_OPT VKBUR_OPT = VKBUR_OPT VKGRP_OPT = VKGRP_OPT ERNAM_OPT = ERNAM_OPT KTEXT_OPT = KTEXT_OPT KTAST_OPT = KTAST_OPT "XOB110 VBKA_OUTP = I_VBKA VBPA_OUTP = VBPA_OUTP EXCEPTIONS NO_INPUT = 1 NO_DATA = 2 OTHERS = 3.
SD_CAS_CROSS_MATCHING_LIST CALL FUNCTION 'SD_CAS_CROSS_MATCHING_LIST' EXPORTING FI_ONLY_DISPLAY = ' ' TABLES FT_VBKA = I_VBKA FT_VBPA = VBPA_OUTP CHANGING FC_KIND_OF_LIST = GS_LIST_VARIANT-KIND FC_TABNAME_HEADER = GS_LIST_VARIANT-TABNAME_HEADER FC_TABNAME_ITEM = GS_LIST_VARIANT-TABNAME_ITEM EXCEPTIONS OTHERS = 0.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING DOKCLASS = LC_REPORT_DOCU * DOKLANGU = SY-LANGU DOKNAME = 'SDCAS_CROSS_MATCHING' * DOKTITLE = ' ' * CALLED_BY_PROGRAM = ' ' * CALLED_BY_DYNP = ' ' * CALLED_FOR_TAB = ' ' * CALLED_FOR_FIELD = ' ' * CALLED_FOR_TAB_FLD_BTCH_INPUT = ' ' * MSG_VAR_1 = ' ' * MSG_VAR_2 = ' ' * MSG_VAR_3 = ' ' * MSG_VAR_4 = ' ' * CALLED_BY_CUAPROG = ' ' * CALLED_BY_CUASTAT = TABLES LINKS = LT_DUMMY EXCEPTIONS OBJECT_NOT_FOUND = 1 SAPSCRIPT_ERROR = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.