DETERMINE_DDLB_ATTRIBUTES SAP Method of class CL_CRM_BSP_STRUCTUREEDIT
Below is documentation, parameters and attributes of ABAP Method DETERMINE_DDLB_ATTRIBUTES within SAP class CL_CRM_BSP_STRUCTUREEDIT. 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 CL_CRM_BSP_STRUCTUREEDIT 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 DETERMINE_DDLB_ATTRIBUTES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DETERMINE_DDLB_ATTRIBUTES
.| Name | Type | Data Type | Description | Default Value |
| IS_EXTENDEDDATA | Importing | TYPE CRMT_EXTENDED_DATA | Struktur für Transport erweiterter Daten an crm Tags | |
| IV_VALUE | Importing | TYPE REF TO DATA | ||
| IS_EXTENDEDDATA | Importing | TYPE CRMT_EXTENDED_DATA | Struktur für Transport erweiterter Daten an crm Tags | |
| EV_OUTPUTLEN | Exporting | TYPE OUTPUTLEN | Ausgabelänge | |
| EV_OUTPUTLEN_MAX | Exporting | TYPE OUTPUTLEN | Ausgabelänge | |
| EV_VALUE_TEXT | Exporting | TYPE STRING | ||
| EV_OUTPUTLEN | Exporting | TYPE OUTPUTLEN | Ausgabelänge | |
| EV_OUTPUTLEN_MAX | Exporting | TYPE OUTPUTLEN | Ausgabelänge |
Exceptions of Method DETERMINE_DDLB_ATTRIBUTES
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_CRM_BSP_STRUCTUREEDIT.
DATA: lv_EV_OUTPUTLEN TYPE OUTPUTLEN,
lv_EV_OUTPUTLEN_MAX TYPE OUTPUTLEN,
lv_EV_VALUE_TEXT TYPE STRING,
lv_IS_EXTENDEDDATA TYPE CRMT_EXTENDED_DATA,
lv_IV_VALUE TYPE DATA,
lv_EV_OUTPUTLEN TYPE OUTPUTLEN,
lv_EV_OUTPUTLEN_MAX TYPE OUTPUTLEN,
lv_IS_EXTENDEDDATA TYPE CRMT_EXTENDED_DATA,
lv_other TYPE c.
CALL METHOD lo_class=>DETERMINE_DDLB_ATTRIBUTES(
EXPORTING
IS_EXTENDEDDATA = lv_IS_EXTENDEDDATA
IV_VALUE = lv_IV_VALUE
IS_EXTENDEDDATA = lv_IS_EXTENDEDDATA
IMPORTING
EV_OUTPUTLEN = lv_EV_OUTPUTLEN
EV_OUTPUTLEN_MAX = lv_EV_OUTPUTLEN_MAX
EV_VALUE_TEXT = lv_EV_VALUE_TEXT
EV_OUTPUTLEN = lv_EV_OUTPUTLEN
EV_OUTPUTLEN_MAX = lv_EV_OUTPUTLEN_MAX ).
Links to Related Class(s)
CL_CRM_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects