GET_HELP_VALUES SAP Method Specific Values From Domains and Check Table
Below is documentation, parameters and attributes of ABAP Method GET_HELP_VALUES 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 GET_HELP_VALUES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_HELP_VALUES
.| Name | Type | Data Type | Description | Default Value |
| CONTENT | Importing | TYPE STRING | ||
| HELP_ID | Importing | TYPE STRING | ||
| SEARCH_ON_KEY | Importing | TYPE AS4FLAG | Flag (X or Blank) | |
| HELP_VALUES | Changing | TYPE SHSVALTAB | Business Server Pages (BSP) Value List Search Help | |
| HELP_VALUES_PREPARED | Changing | TYPE CRM_BSP_SIMPLE_F4_HELP_T | Transfer Table for Simple Value Tables | |
| TITLE_KEY | Changing | TYPE STRING | ||
| TITLE_VALUE | Changing | TYPE STRING |
Exceptions of Method GET_HELP_VALUES
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_CRM_BSP_F4_HELP.
DATA: lv_CONTENT TYPE STRING,
lv_HELP_ID TYPE STRING,
lv_HELP_VALUES TYPE SHSVALTAB,
lv_HELP_VALUES_PREPARED TYPE CRM_BSP_SIMPLE_F4_HELP_T,
lv_SEARCH_ON_KEY TYPE AS4FLAG,
lv_TITLE_KEY TYPE STRING,
lv_TITLE_VALUE TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>GET_HELP_VALUES(
EXPORTING
CONTENT = lv_CONTENT
HELP_ID = lv_HELP_ID
SEARCH_ON_KEY = lv_SEARCH_ON_KEY
CHANGING
HELP_VALUES = lv_HELP_VALUES
HELP_VALUES_PREPARED = lv_HELP_VALUES_PREPARED
TITLE_KEY = lv_TITLE_KEY
TITLE_VALUE = lv_TITLE_VALUE ).
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