SAP IF_BSP_ELEMENT OO Class - Basis Interface for BSP Element
IF_BSP_ELEMENT 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_BSP_ELEMENT 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_BSP_ELEMENT 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 |
| COMPILE_TIME_IS_VALID | Compile Time Query Whether all Attributes are OK | Public |
| CALL METHOD if_bsp_element=>COMPILE_TIME_IS_VALID...more details | ||
| DO_AT_BEGINNING | Call at Beginning of a BSP Element | Public |
| CALL METHOD if_bsp_element=>DO_AT_BEGINNING...more details | ||
| DO_AT_END | Call at End of a BSP Element | Public |
| CALL METHOD if_bsp_element=>DO_AT_END...more details | ||
| DO_AT_ITERATION | Call at End of a BSP Element Content | Public |
| CALL METHOD if_bsp_element=>DO_AT_ITERATION...more details | ||
| DO_SET_DATA | Inner BSP Element with DATA Property | Public |
| CALL METHOD if_bsp_element=>DO_SET_DATA...more details | ||
| GET_CLASS_NAMED_PARENT | Search Parent of Specific Class Type | Public |
| CALL METHOD if_bsp_element=>GET_CLASS_NAMED_PARENT...more details | ||
|
| ||
| GET_DIRECT_PARENT | Get Direct Parent BSP Element | Public |
| CALL METHOD if_bsp_element=>GET_DIRECT_PARENT...more details | ||
| GET_ELEMENT_NAMED_PARENT | Find Parent with Specific Name | Public |
| CALL METHOD if_bsp_element=>GET_ELEMENT_NAMED_PARENT...more details | ||
| RAISE_ERROR | Raise CX_BSP_ELEMENT_EXCEPTION | Public |
| CALL METHOD if_bsp_element=>RAISE_ERROR...more details | ||
| RUNTIME_IS_VALID | Runtime Query (CX_BSP_ELEMENT_EXCEPTION) | Public |
| CALL METHOD if_bsp_element=>RUNTIME_IS_VALID...more details | ||
IF_BSP_ELEMENT 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 |
| CO_ELEMENT_CONTINUE | Constant | Analyze Body (Again) | 0 | LIKE I | Public |
| CO_ELEMENT_DONE | Constant | Do not Analyze Body | 1 | LIKE I | Public |
| CO_PAGE_CONTINUE | Constant | Analyze Page | 0 | LIKE I | Public |
| CO_PAGE_DONE | Constant | Do Not Analyze Page | 1 | LIKE I | Public |
| H_ELEMENT_PROCESS_STATUS | Instance Attribute | Hidden Internal Use Only | LIKE I | Public | |
| ID | Instance Attribute | Extension ID | LIKE STRING | Public | |
| M_CLASS_NAME | Instance Attribute | Class Name | LIKE STRING | Public | |
| M_ELEMENT_ATTRIBUTES | Instance Attribute | Properties from Workbench | LIKE STRING | Public | |
| M_EXTENSION | Instance Attribute | Extension Name | LIKE STRING | Public | |
| M_NAME | Instance Attribute | BSP Extension Name | LIKE STRING | Public | |
| M_OUT | Instance Attribute | Interface for Writing Page Content | LIKE IF_BSP_WRITER | Public | |
| M_PAGE_CONTEXT | Instance Attribute | Pointer to Page Context | LIKE IF_BSP_PAGE_CONTEXT | Public | |
| M_PARENT | Instance Attribute | Pointer to Parent Extension | LIKE IF_BSP_ELEMENT | Public | |
| M_VALIDATOR | Static Attribute | Runtime Attribute Validation | LIKE CL_BSP_ELEMENT_RT_ATTR_VALID | Public |
Links to Related Class(s)
IF_BSP_E...Full list of available SAP object classes
Search for further information about these or an SAP related objects