SAP Reports / Programs

RMCTAEBL SAP ABAP Report - Display Change Documents







RMCTAEBL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Used internally: display of change documents..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 RMCTAEBL into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RMCTAEBL. "Basic submit
SUBMIT RMCTAEBL AND RETURN. "Return to original report after report execution complete
SUBMIT RMCTAEBL VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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 = Unable to Display Change
Text Symbol: 508 = Field No Longer Defined in Table
Text Symbol: 507 = Created
Text Symbol: 506 = Text Entry
Text Symbol: 101 = No Items Found
Text Symbol: 102 = Error Reading
Text Symbol: 202 = Doc. No.
Text Symbol: 203 = Date
Text Symbol: 204 = Time
Text Symbol: 205 = Changed By
Text Symbol: 206 = Object ID
Text Symbol: 401 = Old:
Text Symbol: 402 = New:
Text Symbol: 501 = Text Change
Text Symbol: 502 = Changed
Text Symbol: 503 = Text Delet.
Text Symbol: 504 = Deleted
Text Symbol: 505 = Deleted


INCLUDES used within this REPORT RMCTAEBL

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

CTUT_FEATURE_DATA CALL FUNCTION 'CTUT_FEATURE_DATA' EXPORTING FEATURE_ID = CABN-ATINN MESSAGE_TYPE_INP = 'E' KEY_DATE = SY-DATUM IMPORTING ECABN = CABN EXCEPTIONS INVALID_CLASS_TYPE = 01 MISSING_FEATURE_INFORMATION = 02 NO_FEATURE_FOUND = 03 NO_FEATURE_VALID = 04 NO_LANGUAGE = 05.

CHANGEDOCUMENT_READ CALL FUNCTION 'CHANGEDOCUMENT_READ' EXPORTING CHANGENUMBER = NUMMER DATE_OF_CHANGE = DATUM OBJECTCLASS = OBJEKT OBJECTID = OBJEKTID TABLEKEY = TABKEY TABLENAME = TABNAME TIME_OF_CHANGE = ZEIT USERNAME = AENDERER TABLES EDITPOS = EDITPOS_WITH_HEADER EXCEPTIONS NO_POSITION_FOUND = 1 OTHERS = 2.

CHANGEDOCUMENT_DISPLAY CALL FUNCTION 'CHANGEDOCUMENT_DISPLAY' EXPORTING I_APPLICATIONID = APPLICATIONID * IS_LAYOUT = FLG_AUTOCONDENSE = 'X' * I_CB_HEADER = I_OBJECTCLAS = OBJEKT TABLES I_CDRED = EDITPOS_WITH_HEADER.

CHANGEDOCUMENT_READ_HEADERS CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS' EXPORTING OBJECTCLASS = OBJEKT OBJECTID = OBJEKTID USERNAME = AENDERER TIME_OF_CHANGE = ZEIT 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 = NUMMER TABLENAME = TABNAME TABLEKEY = TABKEY IMPORTING HEADER = CDHDR TABLES EDITPOS = AUSG EXCEPTIONS NO_POSITION_FOUND = 1 OTHERS = 2.

GET_FIELDTAB CALL FUNCTION 'GET_FIELDTAB' EXPORTING TABNAME = AUSG-TABNAME WITHTEXT = 'X' TABLES FIELDTAB = IDFIES EXCEPTIONS INTERNAL_ERROR = 01 NO_TEXTS_FOUND = 01 TABLE_HAS_NO_FIELDS = 01 TABLE_NOT_ACTIV = 01.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RMCTAEBL or its description.