RCS00120 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 RCS00120 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: ZEIT = From Time (HH:MM:SS)
Selection Text: TABNAME = Table Name
Selection Text: TABKEY = Table Key
Selection Text: OBJEKTID = Object ID
Selection Text: OBJEKT = Object Class
Selection Text: NUMMER = Change Document Number
Selection Text: KEY_EXP = Key with Column Headings
Selection Text: DATUM = From Date (DD.MM.YYYY)
Selection Text: AENDERER = Last Changed By
Title: Display Change Documents
Text Symbol: 509 = Change cannot be displayed
Text Symbol: 508 = Field no longer defined in table
Text Symbol: 507 = Entry
Text Symbol: 506 = Text Entry
Text Symbol: 505 = Deletion
Text Symbol: 504 = Deletion
Text Symbol: 503 = Text Deletn
Text Symbol: 502 = Change
Text Symbol: 501 = Text Change
Text Symbol: 402 = New:
Text Symbol: 401 = Old:
Text Symbol: 217 = New Value
Text Symbol: 216 = Old Value
Text Symbol: 215 = Field Description
Text Symbol: 214 = Field changed
Text Symbol: 213 = Action
Text Symbol: 212 = Transaction
Text Symbol: 211 = Table Key
Text Symbol: 210 = Table
Text Symbol: 206 = Object ID
Text Symbol: 205 = Changed By
Text Symbol: 204 = Time
Text Symbol: 203 = Date
Text Symbol: 202 = Doc. No.
Text Symbol: 102 = Read Error
Text Symbol: 101 = No Items Found
Text Symbol: 010 = -------------------------------------------------------------------------------
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CHANGEDOCUMENT_READ_POSITIONS CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS' EXPORTING changenumber = gs_outtab_1-col1 IMPORTING header = cdhdr TABLES editpos = ausg EXCEPTIONS no_position_found = 1 OTHERS = 2.
CHANGEDOCUMENT_READ_POSITIONS CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS' EXPORTING changenumber = gs_outtab_1-col1 IMPORTING header = cdhdr TABLES editpos = ausg EXCEPTIONS no_position_found = 1 OTHERS = 2.
CHANGEDOCUMENT_READ_HEADERS CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS' EXPORTING objectclass = objekt objectid = objektid username = aenderer date_of_change = datum TABLES i_cdhdr = icdhdr EXCEPTIONS no_position_found = 1 OTHERS = 2.
CHANGEDOCUMENT_READ_POSITIONS * CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS' * EXPORTING * changenumber = icdhdr-changenr * IMPORTING * header = cdhdr * TABLES * editpos = ausg * EXCEPTIONS * no_position_found = 1 * OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.