SAP CL_RSMD_UC_AUNIT OO Class - Superclass for Unit Tests
CL_RSMD_UC_AUNIT is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class CL_RSMD_UC_AUNIT including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of CL_RSMD_UC_AUNIT SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| CHECK_DATASTORE | Checks Existance of a DataStore and Creates It if Necessary | Protected |
| CALL METHOD cl_rsmd_uc_aunit=>CHECK_DATASTORE...more details | ||
| CHECK_INFOCUBE | Checks Existance of an InfoCube and Creates It if Necessary | Protected |
| CALL METHOD cl_rsmd_uc_aunit=>CHECK_INFOCUBE...more details | ||
| CLASS_SETUP | Class_Setup for Unit Test | Private |
| CALL METHOD cl_rsmd_uc_aunit=>CLASS_SETUP...more details | ||
| DROP_UC_TABLES | Deletes the Temporary Tables from the Where-Used List | Protected |
| CALL METHOD cl_rsmd_uc_aunit=>DROP_UC_TABLES...more details | ||
| INVOKE_USAGE_CHECK | Calls the Where-Used List for an InfoObject | Protected |
| CALL METHOD cl_rsmd_uc_aunit=>INVOKE_USAGE_CHECK...more details | ||
| _BAPI_IOBJ_CREATE | Copy of BAPI_IOBJ_CREATE Since No UUID Support | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_BAPI_IOBJ_CREATE...more details | ||
|
| ||
| _CLEAR_MD_TABLES | Deletes the Master Data Table of a Characteristic | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_CLEAR_MD_TABLES...more details | ||
| _CLEAR_TABLE | Deletes the Contents of a Table | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_CLEAR_TABLE...more details | ||
| _CREATE_IOBJ | Creates New InfoObject and Activates It | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_CREATE_IOBJ...more details | ||
| _GET_IOBJ | Checks with RSD_IOB_GET to see whether an InfoObject exists | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_GET_IOBJ...more details | ||
| _PREPARE_1 | Preparation of InfoObjects for Test Case 1 (see Docu) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_1...more details | ||
| _PREPARE_2 | Preparation of InfoObjects for Test Case 2 (See Docu) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_2...more details | ||
| _PREPARE_3 | Preparation of InfoObjects for Test Case 3 (See Docu) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_3...more details | ||
| _PREPARE_4 | Preparation of InfoObjects for Test Case 4 (See Docu) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_4...more details | ||
| _PREPARE_5 | Preparation of InfoObjects for Test Case 5 (See Docu) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_5...more details | ||
| _PREPARE_6 | Preparation of InfoObjects for Test Case 6 (See Docu) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_6...more details | ||
| _PREPARE_6_1 | Preparation of InfoObjects for Test Case 6.1 (See Docu) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_6_1...more details | ||
| _PREPARE_7 | Preparation of InfoObjects for Test Case 7 (See Docu) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_7...more details | ||
| _PREPARE_8 | Preparation of InfoObjects for Test Case 8 (See Docu) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_8...more details | ||
| _PREPARE_9 | Preparation of a Key Figure (See Documentation) | Private |
| CALL METHOD cl_rsmd_uc_aunit=>_PREPARE_9...more details | ||
CL_RSMD_UC_AUNIT attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| G_DUMMY_MSG | Static Attribute | Necessary for Copy BAPI_IOBJ_CREATE | LIKE C | Private | |
| O_UC_D_TABNAME | Instance Attribute | Name of the D Table of the Where-Used List | LIKE TABNAME | Protected | |
| O_UC_T_TABNAME | Instance Attribute | Name of the T Table of the Where-Used List | LIKE TABNAME | Protected |
Links to Related Class(s)
CL_RSMD_...Full list of available SAP object classes
Search for further information about these or an SAP related objects