SELECT_F4_VALUES SAP Method Select help values
Below is documentation, parameters and attributes of ABAP Method SELECT_F4_VALUES within SAP class /FSCAA/CL_PROCESS. 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 /FSCAA/CL_PROCESS 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 SELECT_F4_VALUES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SELECT_F4_VALUES
.| Name | Type | Data Type | Description | Default Value |
| PI_COUNTRY | Importing | TYPE /FSCAA/SHLP_COUNTRY | ||
| PI_FIELDNAME | Importing | TYPE FIELDNAME | Field Name | |
| PI_MAXROWS | Importing | TYPE I | ||
| PI_TABNAME | Importing | TYPE TABNAME | Table Name | |
| PI_VALUE | Importing | TYPE STRING | ||
| PE_SHLPNAME | Exporting | TYPE SHLPNAME | Name of a Search Help | |
| PE_SHLPTYPE | Exporting | TYPE DDSHLPTYP | Type of an input help (see fixed values) | |
| PE_TAB_BAPIF4C | Exporting | TYPE /FSCAA/TAB_BAPIF4C | list of help values (keys and text) |
Exceptions of Method SELECT_F4_VALUES
/FSCAA/CX_EXCEPTION - FS-CAA Exception classExample ABAP coding
DATA: lo_class TYPE REF TO /FSCAA/CL_PROCESS.
DATA: lv_PE_SHLPNAME TYPE SHLPNAME,
lv_PE_SHLPTYPE TYPE DDSHLPTYP,
lv_PE_TAB_BAPIF4C TYPE /FSCAA/TAB_BAPIF4C,
lv_PI_COUNTRY TYPE /FSCAA/SHLP_COUNTRY,
lv_PI_FIELDNAME TYPE FIELDNAME,
lv_PI_MAXROWS TYPE I,
lv_PI_TABNAME TYPE TABNAME,
lv_PI_VALUE TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>SELECT_F4_VALUES(
EXPORTING
PI_COUNTRY = lv_PI_COUNTRY
PI_FIELDNAME = lv_PI_FIELDNAME
PI_MAXROWS = lv_PI_MAXROWS
PI_TABNAME = lv_PI_TABNAME
PI_VALUE = lv_PI_VALUE
IMPORTING
PE_SHLPNAME = lv_PE_SHLPNAME
PE_SHLPTYPE = lv_PE_SHLPTYPE
PE_TAB_BAPIF4C = lv_PE_TAB_BAPIF4C ).
Links to Related Class(s)
/FSCAA/C...Full list of available SAP object classes
Search for further information about these or an SAP related objects