CALL_VALUE_TABLE SAP Method Simple Value Table Structure
Below is documentation, parameters and attributes of ABAP Method CALL_VALUE_TABLE within SAP class CL_CRM_BSP_F4_HELP. 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_F4_HELP 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 CALL_VALUE_TABLE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CALL_VALUE_TABLE
.| Name | Type | Data Type | Description | Default Value |
| I_BLVIEW | Importing | TYPE STRING | ||
| I_CONTENT | Importing | TYPE STRING | ||
| I_FIELDGROUP | Importing | TYPE STRING | ||
| I_FIELDGROUP_VAR | Importing | TYPE STRING | ||
| I_HELP_ID | Importing | TYPE STRING | ||
| I_PREFIX | Importing | TYPE STRING |
Exceptions of Method CALL_VALUE_TABLE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_CRM_BSP_F4_HELP.
DATA: lv_I_BLVIEW TYPE STRING,
lv_I_CONTENT TYPE STRING,
lv_I_FIELDGROUP TYPE STRING,
lv_I_FIELDGROUP_VAR TYPE STRING,
lv_I_HELP_ID TYPE STRING,
lv_I_PREFIX TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>CALL_VALUE_TABLE(
EXPORTING
I_BLVIEW = lv_I_BLVIEW
I_CONTENT = lv_I_CONTENT
I_FIELDGROUP = lv_I_FIELDGROUP
I_FIELDGROUP_VAR = lv_I_FIELDGROUP_VAR
I_HELP_ID = lv_I_HELP_ID
I_PREFIX = lv_I_PREFIX ).
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