RMCP3DEL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for With this function, you delete mass characteristics from an information structure...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 RMCP3DEL into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
MC9F - Info Structure: Delete All Charact.
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.
Keys for General Characteristics
Selection Text: P_MASKE = Masking symbol
Selection Text: P_GSTRU = Info structure
Selection Text: FLG_COMI = Test
Title: Planning Hierarchy: Delete General Characteristics in Hierarchy
Text Symbol: 078 = Invalid masking symbol
Text Symbol: 077 = Unknown error
Text Symbol: 076 = Error editing structure
Text Symbol: 075 = Creation of planning object has failed
Text Symbol: 074 = Info structure does not exist
Text Symbol: 073 = Chosen hierarchical level does not exist
Text Symbol: 072 = Error deleting general characteristics
Text Symbol: 071 = Error inserting general characteristics
Text Symbol: 070 = No changes made.
Text Symbol: 063 = Masking symbol
Text Symbol: 062 = Info structure
Text Symbol: 061 = Key description
Text Symbol: 060 = Edit hierarchy from level
Text Symbol: 053 = Only one key field may be chosen
Text Symbol: 052 = Error choosing key field
Text Symbol: 051 = No key field was chosen
Text Symbol: 050 = Error determining key fields
Text Symbol: 042 = Changes written to database
Text Symbol: 011 = Text Description
Text Symbol: 010 = Table Period Fiscal year variant Application
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MC_GSTRU_PRUEFEN CALL FUNCTION 'MC_GSTRU_PRUEFEN' EXPORTING I_GSTRU = GSTRU TABLES T_DATF = DUMMY_DATF T_KEYS = KEYF T_UNITS = DUMMY_UNITS.
MC_KEYF_SELECT CALL FUNCTION 'MC_KEYF_SELECT' EXPORTING I_FIELD_NUMBER_MAX = 1 TABLES T_KEYF = KEYF EXCEPTIONS NO_KEYS_TO_SELECT = 1 OTHERS = 2.
QUOTA_INFO_CONTENT CALL FUNCTION 'QUOTA_INFO_CONTENT' EXPORTING I_GSTRU = GSTRU I_FUNC = 'D' " Delete I_MASK = P_MASKE I_LEVEL = LEVEL I_OUTPUT = 'X' " Änderungsprotokoll * CHANGING * E_COUNT = EXCEPTIONS E_INSERT = 1 E_DELETE = 2 LEVEL_OUT_OFF_RANGE = 3 GSTRU_NOT_EXISTS = 4 GENERATION_FAILED = 5 MASK_INVALID = 6 ERROR = 7 OTHERS = 8.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.