RM60ECML 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 RM60ECML 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: Planning profile: Display of Change Numbers Used
Text Symbol: 001 = Change number
Text Symbol: 002 = Validity
Text Symbol: 003 = The profile was deleted
Text Symbol: 004 = Charact. values comb. was deleted
Text Symbol: 005 = The combination key was deleted
Text Symbol: 006 = The value was changed
Text Symbol: 007 = Value new
Text Symbol: 010 = Planning profile
Text Symbol: 011 = Attribut of profile New value
Text Symbol: 012 = Old value
Text Symbol: 015 = Char. values combi.
Text Symbol: 016 = Attribute of combination New value
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
M60V_PROFIL_FOR_PLAN CALL FUNCTION 'M60V_PROFIL_FOR_PLAN' EXPORTING OBJEKT = OBJECT PROFILID = R_PROFILID-LOW BUFFER_FREE = 'X' KEY_DATE = P_DATUV I_PL_REL = ' ' IMPORTING EXP_VALUE = OLD_VALUES EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
CSGU_RECORDS_COMPARE CALL FUNCTION 'CSGU_RECORDS_COMPARE' EXPORTING NEW_RECORD = P_NEW OLD_RECORD = P_OLD TABNAME = P_TAB TABLES CHANGED_FIELDS = FIELDS EXCEPTIONS NO_CHANGE = 1 OTHERS = 2.
M60V_COMBINATION_DISPLAY CALL FUNCTION 'M60V_COMBINATION_DISPLAY' EXPORTING TABLE_NAME = P_CLASS TABLE_LINE = P_LNPOS TABLE_NUMBER = P_CLINT IMPORTING STRING = P_STRING.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.