SAP IF_BSP_DLC_CONFIGURATION OO Class - Configuration Descriptor Interface
IF_BSP_DLC_CONFIGURATION 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_DLC_CONFIGURATION 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_DLC_CONFIGURATION 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 |
| DELETE_CONFIG_DATA | Public | |
| CALL METHOD if_bsp_dlc_configuration=>DELETE_CONFIG_DATA...more details | ||
| DELETE_CUSTOM_TEXT | Public | |
| CALL METHOD if_bsp_dlc_configuration=>DELETE_CUSTOM_TEXT...more details | ||
| GET_CONFIG_DATA | Public | |
| CALL METHOD if_bsp_dlc_configuration=>GET_CONFIG_DATA...more details | ||
| GET_CONFIG_DATA_EXPLICIT | Get explicitly (no access sequence) | Public |
| CALL METHOD if_bsp_dlc_configuration=>GET_CONFIG_DATA_EXPLICIT...more details | ||
| GET_CONFIG_KEY | Gets configuration key | Public |
| CALL METHOD if_bsp_dlc_configuration=>GET_CONFIG_KEY...more details | ||
| GET_CURRENT_CONFIG_DATA_INFO | Get info about current config data | Public |
| CALL METHOD if_bsp_dlc_configuration=>GET_CURRENT_CONFIG_DATA_INFO...more details | ||
|
| ||
| GET_CURRENT_CONFIG_DATA_ORIGIN | Get origin of current config data (System or Customer Table) | Public |
| CALL METHOD if_bsp_dlc_configuration=>GET_CURRENT_CONFIG_DATA_ORIGIN...more details | ||
| GET_CURRENT_CONTEXT_ID | Get current context id | Public |
| CALL METHOD if_bsp_dlc_configuration=>GET_CURRENT_CONTEXT_ID...more details | ||
| GET_CUSTOM_TEXT | Liefert Texte aus der Konfiguration | Public |
| CALL METHOD if_bsp_dlc_configuration=>GET_CUSTOM_TEXT...more details | ||
| GET_CUSTOM_TEXT_W_INFO | Liefert Texte aus der Konfiguration | Public |
| CALL METHOD if_bsp_dlc_configuration=>GET_CUSTOM_TEXT_W_INFO...more details | ||
| GET_MANDATORY_FIELDS | Public | |
| CALL METHOD if_bsp_dlc_configuration=>GET_MANDATORY_FIELDS...more details | ||
| GET_PROPERTY_DESCRIPTOR | Public | |
| CALL METHOD if_bsp_dlc_configuration=>GET_PROPERTY_DESCRIPTOR...more details | ||
| HAS_BUTTON_CONFIG | Check if button configuration exist | Public |
| CALL METHOD if_bsp_dlc_configuration=>HAS_BUTTON_CONFIG...more details | ||
| INVALIDATE_CONFIG | Invalidates the configuration and forces reread | Public |
| CALL METHOD if_bsp_dlc_configuration=>INVALIDATE_CONFIG...more details | ||
| LOCK_CONFIGURATION | Public | |
| CALL METHOD if_bsp_dlc_configuration=>LOCK_CONFIGURATION...more details | ||
| SET_COMPONENT_USAGE | Public | |
| CALL METHOD if_bsp_dlc_configuration=>SET_COMPONENT_USAGE...more details | ||
| SET_CONFIG_DATA | Public | |
| CALL METHOD if_bsp_dlc_configuration=>SET_CONFIG_DATA...more details | ||
| SET_CONFIG_KEY | Sets configuration key | Public |
| CALL METHOD if_bsp_dlc_configuration=>SET_CONFIG_KEY...more details | ||
| SET_CUSTOM_TEXT | Public | |
| CALL METHOD if_bsp_dlc_configuration=>SET_CUSTOM_TEXT...more details | ||
| SET_FIELD_PROPERTIES | Public | |
| CALL METHOD if_bsp_dlc_configuration=>SET_FIELD_PROPERTIES...more details | ||
| SET_ROLE_KEY | Public | |
| CALL METHOD if_bsp_dlc_configuration=>SET_ROLE_KEY...more details | ||
| SET_SUBKEY | Public | |
| CALL METHOD if_bsp_dlc_configuration=>SET_SUBKEY...more details | ||
| SET_TRANSPORT_DATA | Public | |
| CALL METHOD if_bsp_dlc_configuration=>SET_TRANSPORT_DATA...more details | ||
| UNLOCK_CONFIGURATION | Public | |
| CALL METHOD if_bsp_dlc_configuration=>UNLOCK_CONFIGURATION...more details | ||
| WAS_INVALIDATED | At runtime: Was invalidated since last call of this meth | Public |
| CALL METHOD if_bsp_dlc_configuration=>WAS_INVALIDATED...more details | ||
IF_BSP_DLC_CONFIGURATION 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 |
| MODE_DISPLAY | Constant | Display Mode | 'D' | LIKE BSP_DLC_DISP_EDIT_MODE | Public |
| MODE_EDIT | Constant | Edit mode | 'E' | LIKE BSP_DLC_DISP_EDIT_MODE | Public |
Events of Class IF_BSP_DLC_CONFIGURATION
Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... CONFIG_CHANGED - Configuration changedCONFIG_DATA_CHANGED - Configuration changed
Links to Related Class(s)
IF_BSP_D...Full list of available SAP object classes
Search for further information about these or an SAP related objects