CONCATENATE_PARAMETERS SAP Method Verkettungsparameter der HTML-Statements
Below is documentation, parameters and attributes of ABAP Method CONCATENATE_PARAMETERS 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 CONCATENATE_PARAMETERS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CONCATENATE_PARAMETERS
.| Name | Type | Data Type | Description | Default Value |
| IV_ALIGN | Importing | TYPE ANY | ||
| IV_COLSPAN | Importing | TYPE ANY | ||
| IV_FIELDTYPE | Importing | TYPE CRMT_FIELDTYPE_LAYOUT | ||
| IV_FIX_WIDTH | Importing | TYPE ANY | ||
| IV_ROWSPAN | Importing | TYPE ANY | ||
| IV_STYLE | Importing | TYPE ANY | ||
| IV_VALIGN | Importing | TYPE ANY | ||
| IV_WIDTH | Importing | TYPE ANY | ||
| RV_STRING | Returning | TYPE STRING |
Exceptions of Method CONCATENATE_PARAMETERS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_CRM_BSP_STRUCTUREEDIT.
DATA: lv_IV_ALIGN TYPE ANY,
lv_IV_COLSPAN TYPE ANY,
lv_IV_FIELDTYPE TYPE CRMT_FIELDTYPE_LAYOUT,
lv_IV_FIX_WIDTH TYPE ANY,
lv_IV_ROWSPAN TYPE ANY,
lv_IV_STYLE TYPE ANY,
lv_IV_VALIGN TYPE ANY,
lv_IV_WIDTH TYPE ANY,
lv_RV_STRING TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>CONCATENATE_PARAMETERS(
EXPORTING
IV_ALIGN = lv_IV_ALIGN
IV_COLSPAN = lv_IV_COLSPAN
IV_FIELDTYPE = lv_IV_FIELDTYPE
IV_FIX_WIDTH = lv_IV_FIX_WIDTH
IV_ROWSPAN = lv_IV_ROWSPAN
IV_STYLE = lv_IV_STYLE
IV_VALIGN = lv_IV_VALIGN
IV_WIDTH = lv_IV_WIDTH
RECEIVING
RV_STRING = lv_RV_STRING )
"Alternate coding for Method Call with returning parameter
lv_RV_STRING = lo_class=>CONCATENATE_PARAMETERS(
EXPORTING
IV_ALIGN = lv_IV_ALIGN
IV_COLSPAN = lv_IV_COLSPAN
IV_FIELDTYPE = lv_IV_FIELDTYPE
IV_FIX_WIDTH = lv_IV_FIX_WIDTH
IV_ROWSPAN = lv_IV_ROWSPAN
IV_STYLE = lv_IV_STYLE
IV_VALIGN = lv_IV_VALIGN
IV_WIDTH = lv_IV_WIDTH ).
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