SAP IF_ESD_COMMON OO Class - Common functions
IF_ESD_COMMON 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 IF_ESD_COMMON 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 IF_ESD_COMMON 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 |
| ACTIVATE | activate object | Public |
| CALL METHOD if_esd_common=>ACTIVATE...more details | ||
| CHANGE_ACTIVE_INACTIVE | Toggles active and inactive version | Public |
| CALL METHOD if_esd_common=>CHANGE_ACTIVE_INACTIVE...more details | ||
| CHECK | General check method | Public |
| CALL METHOD if_esd_common=>CHECK...more details | ||
| COPY | Copies Service Definition | Public |
| CALL METHOD if_esd_common=>COPY...more details | ||
| DELETE | Deletes Service Definition | Public |
| CALL METHOD if_esd_common=>DELETE...more details | ||
| GET_CHECK_DETAIL | return detail information for check | Public |
| CALL METHOD if_esd_common=>GET_CHECK_DETAIL...more details | ||
|
| ||
| GET_TESTPROGRAM | returns name of testprogram and its parameters | Public |
| CALL METHOD if_esd_common=>GET_TESTPROGRAM...more details | ||
| GET_WB_OBJECT_KEY | returns the object key | Public |
| CALL METHOD if_esd_common=>GET_WB_OBJECT_KEY...more details | ||
| GET_WB_OBJECT_TYPE | returns the object type | Public |
| CALL METHOD if_esd_common=>GET_WB_OBJECT_TYPE...more details | ||
| IS_REVISED | data changed since last save | Public |
| CALL METHOD if_esd_common=>IS_REVISED...more details | ||
| LOCK | Lock object | Public |
| CALL METHOD if_esd_common=>LOCK...more details | ||
| RELOAD | reload data from database | Public |
| CALL METHOD if_esd_common=>RELOAD...more details | ||
| RENAME | Rename Service Definition | Public |
| CALL METHOD if_esd_common=>RENAME...more details | ||
| RETURN_TO_ACTIVE_VERSION | discard inactive version and return to active | Public |
| CALL METHOD if_esd_common=>RETURN_TO_ACTIVE_VERSION...more details | ||
| SAVE | write data in object to data base | Public |
| CALL METHOD if_esd_common=>SAVE...more details | ||
| SET_WB_OBJECT_KEY | Public | |
| CALL METHOD if_esd_common=>SET_WB_OBJECT_KEY...more details | ||
| SET_WB_OBJECT_TYPE | Public | |
| CALL METHOD if_esd_common=>SET_WB_OBJECT_TYPE...more details | ||
| TRANSPORT | Public | |
| CALL METHOD if_esd_common=>TRANSPORT...more details | ||
| UNLOCK | unlock object | Public |
| CALL METHOD if_esd_common=>UNLOCK...more details | ||
IF_ESD_COMMON 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 |
| V_OBJECT | Instance Attribute | ESD: ABAP TADIR Type | LIKE ESD_ABAP_TYPE | Public | |
| V_OBJECT_KEY | Instance Attribute | WB Request: Key for Object in Development Environment | LIKE SEU_OBJKEY | Public | |
| V_OBJECT_TYPE | Instance Attribute | WB Request: Type of Object of Development Environment | LIKE SEU_OBJTYP | Public | |
| V_OBJ_NAME | Instance Attribute | ESD: ABAP Name | LIKE ESD_ABAP_NAME | Public |
Links to Related Class(s)
IF_ESD_C...Full list of available SAP object classes
Search for further information about these or an SAP related objects