GET_DYN_VAR_CLS SAP Method Gets the class names/formulae for the resp. application id
Below is documentation, parameters and attributes of ABAP Method GET_DYN_VAR_CLS within SAP class IF_BADI_GET_DYN_VAR_CLS. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_BADI_GET_DYN_VAR_CLS into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method GET_DYN_VAR_CLS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_DYN_VAR_CLS
.| Name | Type | Data Type | Description | Default Value |
| I_APPLID | Importing | TYPE POWL_APPLID_TY | Application ID | |
| I_TYPEID | Importing | TYPE POWL_TYPE_TY | POWL type ID | |
| C_DYN_VAR_CLS | Changing | TYPE POWL_DYN_VAR_CLS_TTY | List of all class that implements the intf. IF_POWL_DYN_VAR |
Exceptions of Method GET_DYN_VAR_CLS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_GET_DYN_VAR_CLS.
DATA: lv_C_DYN_VAR_CLS TYPE POWL_DYN_VAR_CLS_TTY,
lv_I_APPLID TYPE POWL_APPLID_TY,
lv_I_TYPEID TYPE POWL_TYPE_TY,
lv_other TYPE c.
CALL METHOD lo_class=>GET_DYN_VAR_CLS(
EXPORTING
I_APPLID = lv_I_APPLID
I_TYPEID = lv_I_TYPEID
CHANGING
C_DYN_VAR_CLS = lv_C_DYN_VAR_CLS ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects