MCDOKABL 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 MCDOKABL 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: Display Change Documents for Documents
Text Symbol: 028 = Hidden Information
Text Symbol: 027 = Hidden Info
Text Symbol: 026 = HiddenInfo
Text Symbol: 025 = Time
Text Symbol: 024 = Date
Text Symbol: 023 = Status
Text Symbol: 022 = Object
Text Symbol: 021 = Category
Text Symbol: 020 = Description:
Text Symbol: 019 = Application:
Text Symbol: 018 = Storage Category
Text Symbol: 017 = File Size
Text Symbol: 016 = MIME Type
Text Symbol: 015 = File Name
Text Symbol: 014 = original Checked In
Text Symbol: 013 = Original Checked Out
Text Symbol: 012 = Changes to Originals
Text Symbol: 011 = Changes to Document
Text Symbol: 010 = Field Name
Text Symbol: 009 = Changes to Fields
Text Symbol: 008 = Language:
Text Symbol: 007 = Changes to Descriptions
Text Symbol: 006 = New
Text Symbol: 005 = Old
Text Symbol: 004 = Deleted
Text Symbol: 003 = Created
Text Symbol: 002 = Changed
Text Symbol: 001 = Changes to Object Links
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CV200_DB_TDWA_SELECT CALL FUNCTION 'CV200_DB_TDWA_SELECT' EXPORTING: pf_dokar = dokar IMPORTING: psx_tdwa = ls_tdwa EXCEPTIONS: not_found = 1 OTHERS = 2.
CHANGEDOCUMENT_READ CALL FUNCTION 'CHANGEDOCUMENT_READ' EXPORTING archive_handle = 0 objectclass = 'DOKUMENT' objectid = objektid TABLES editpos = einzelbelege EXCEPTIONS no_position_found = 01 wrong_access_to_archive = 02.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING: tabname = pf_report fieldname = pf_field langu = sy-langu TABLES: dfies_tab = lt_tab EXCEPTIONS: not_found = 1 internal_error = 2 OTHERS = 3.
SDOK_LOIO_FROM_RELATIONS_GET CALL FUNCTION 'SDOK_LOIO_FROM_RELATIONS_GET' EXPORTING: object_id = ls_object relation_class = 'LOGOBJECT' TABLES: RESULT = lt_result EXCEPTIONS: not_existing = 1 bad_class = 2 not_authorized = 3 OTHERS = 4.
SDOK_LOIO_PROPERTIES_GET CALL FUNCTION 'SDOK_LOIO_PROPERTIES_GET' EXPORTING: object_id = ps_loio TABLES: properties = lt_attrib EXCEPTIONS: not_existing = 1 not_authorized = 2 exception_in_exit = 3 OTHERS = 4.
SDOK_PHIOS_FILE_PROPERTIES_GET CALL FUNCTION 'SDOK_PHIOS_FILE_PROPERTIES_GET' TABLES: object_fileproperties = lt_prop components = lt_comp bad_objects = lt_bad_obj.
SDOK_PHIO_PROPERTIES_GET CALL FUNCTION 'SDOK_PHIO_PROPERTIES_GET' EXPORTING: object_id = ps_phio TABLES: properties = lt_attrib EXCEPTIONS: not_existing = 1 not_authorized = 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.