ACE_DS_CHANGEDOC_SHOW 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 ACE_DS_CHANGEDOC_SHOW 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.
Selection Text: DATUM = From date (DD.MM.YYYY)
Selection Text: NUMMER = Change Document Number
Selection Text: PF_OLD = Old Selection or Archive
Selection Text: P_BUKRS = D Company Code
Selection Text: P_COMP = D Application Component
Selection Text: P_REFKEY = D Reference Object
Selection Text: P_SUBKEY = D Reference Sub-Object
Selection Text: ZEIT = From time (HH:MM:SS)
Selection Text: AENDERER = Last Changed By
Title: Display Change Documents
Text Symbol: 101 = No Items Found
Text Symbol: 102 = Error reading
Text Symbol: 200 = Reference, Sub-Ref.
Text Symbol: 201 = Change Documents in Component
Text Symbol: 202 = Company Code
Text Symbol: 210 = Object ID
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CHANGEDOCUMENT_READ CALL FUNCTION 'CHANGEDOCUMENT_READ' EXPORTING OBJECTCLASS = OBJEKT OBJECTID = OBJEKTID USERNAME = AENDERER TIME_OF_CHANGE = ZEIT DATE_OF_CHANGE = DATUM CHANGENUMBER = NUMMER TABLES EDITPOS = AUSG EXCEPTIONS NO_POSITION_FOUND = 1 OTHERS = 2.
CHANGEDOCUMENT_DISPLAY CALL FUNCTION 'CHANGEDOCUMENT_DISPLAY' EXPORTING I_APPLICATIONID = APPLICATIONID FLG_AUTOCONDENSE = 'X' I_OBJECTCLAS = OBJEKT TABLES I_CDRED = AUSG.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_INTERNAL_TABNAME = 'GT_CDHDR' I_STRUCTURE_NAME = 'CDHDR' CHANGING CT_FIELDCAT = LT_FCAT.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING I_INTERNAL_TABNAME = 'GT_CDPOS' I_STRUCTURE_NAME = 'CDPOS' CHANGING CT_FIELDCAT = LT_FCAT.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' * I_CALLBACK_PROGRAM = * I_CALLBACK_PF_STATUS_SET = ' ' * I_CALLBACK_USER_COMMAND = ' ' IS_LAYOUT = LS_LAYOUT IT_FIELDCAT = LT_FCAT * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * I_DEFAULT = 'X' * I_SAVE = ' ' * IS_VARIANT = * IT_EVENTS = * IT_EVENT_EXIT = I_TABNAME_HEADER = 'GT_CDHDR' I_TABNAME_ITEM = 'GT_CDPOS' IS_KEYINFO = LS_KEYINFO * IS_PRINT = * IS_REPREP_ID = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES T_OUTTAB_HEADER = GT_CDHDR T_OUTTAB_ITEM = GT_CDPOS.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.