RMCLAEBL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report displays change documents for classes...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 RMCLAEBL 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 = 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
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 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 * I_SELECTOPTIONS = .
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_s_log.
BAL_LOG_MSG_ADD_FREE_TEXT CALL FUNCTION 'BAL_LOG_MSG_ADD_FREE_TEXT' EXPORTING i_text = text-101 i_msgty = 'W'.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY'.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_s_log.
BAL_LOG_MSG_ADD_FREE_TEXT CALL FUNCTION 'BAL_LOG_MSG_ADD_FREE_TEXT' EXPORTING i_text = text-102 i_msgty = 'E'.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY'.
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.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.