GET_RPM_SELECT_FIELDS SAP Method Retrieve the Selection Fields
Below is documentation, parameters and attributes of ABAP Method GET_RPM_SELECT_FIELDS within SAP class CL_DPR_UI_LOG_SEARCH. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_DPR_UI_LOG_SEARCH 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_RPM_SELECT_FIELDS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_RPM_SELECT_FIELDS
.| Name | Type | Data Type | Description | Default Value |
| IV_OBJTYPE | Importing | TYPE CGPL_OBJECT_TYPE | Object Type | |
| IV_SEARCH_HELP | Importing | TYPE SHLPNAME | Name of a Search Help | |
| ET_FIELDS | Exporting | TYPE DDFIELDS | DD: Field List | |
| EV_KEYFIELD1 | Exporting | TYPE FIELDNAME | Field Name | |
| EV_KEYFIELD2 | Exporting | TYPE FIELDNAME | Field Name | |
| EV_NAMEFIELD1 | Exporting | TYPE /RPM/TV_SHLP_NAMEFIELD | Name Field | |
| EV_NAMEFIELD2 | Exporting | TYPE /RPM/TV_SHLP_NAMEFIELD | Name Field |
Exceptions of Method GET_RPM_SELECT_FIELDS
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO CL_DPR_UI_LOG_SEARCH.
DATA: lv_ET_FIELDS TYPE DDFIELDS,
lv_EV_KEYFIELD1 TYPE FIELDNAME,
lv_EV_KEYFIELD2 TYPE FIELDNAME,
lv_EV_NAMEFIELD1 TYPE /RPM/TV_SHLP_NAMEFIELD,
lv_EV_NAMEFIELD2 TYPE /RPM/TV_SHLP_NAMEFIELD,
lv_IV_OBJTYPE TYPE CGPL_OBJECT_TYPE,
lv_IV_SEARCH_HELP TYPE SHLPNAME,
lv_other TYPE c.
CALL METHOD lo_class=>GET_RPM_SELECT_FIELDS(
EXPORTING
IV_OBJTYPE = lv_IV_OBJTYPE
IV_SEARCH_HELP = lv_IV_SEARCH_HELP
IMPORTING
ET_FIELDS = lv_ET_FIELDS
EV_KEYFIELD1 = lv_EV_KEYFIELD1
EV_KEYFIELD2 = lv_EV_KEYFIELD2
EV_NAMEFIELD1 = lv_EV_NAMEFIELD1
EV_NAMEFIELD2 = lv_EV_NAMEFIELD2 ).
Links to Related Class(s)
CL_DPR_U...Full list of available SAP object classes
Search for further information about these or an SAP related objects