MCDOKVLS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter MCDOKVLS into the relevant SAP transactions such as SE38 or SE80
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.
Title: Document Versions
Text Symbol: 001 = Version
Text Symbol: 002 = Status
Text Symbol: 003 = Change Number
Text Symbol: 004 = Description
Text Symbol: 005 = Documents
Text Symbol: 006 = Latest Version On
Text Symbol: 007 = Valid From
Text Symbol: 008 = Valid To
Text Symbol: 009 = Vers.Stat.
Text Symbol: 010 = Version Status
Text Symbol: 011 = Later Version Exists
Text Symbol: 012 = Latest Version
Text Symbol: 013 = Desc.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CVIN_GET_VERSIONS CALL FUNCTION 'CVIN_GET_VERSIONS' EXPORTING: pfi_dokar = draw-dokar pfi_doknr = draw-doknr pfi_doktl = draw-doktl pfi_get_list = 'X' TABLES: pte_draw = lt_draw EXCEPTIONS no_data_found = 1.
DOCUMENT_ACTUAL_VERSION CALL FUNCTION 'DOCUMENT_ACTUAL_VERSION' EXPORTING datum = date dokar = draw-dokar doknr = draw-doknr teildok = draw-doktl IMPORTING dokvr = actual_version EXCEPTIONS no_document = 1 no_version_for_time = 2 OTHERS = 3.
CV115_DOCUMENT_VALID_DATES CALL FUNCTION 'CV115_DOCUMENT_VALID_DATES' EXPORTING dokar = draw-dokar doknr = draw-doknr tldok = draw-doktl * sicht_all = 'X' TABLES dates = intervals EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.