CONTROLL_SEARCH SAP Method Central Control Method: Initial Screen
Below is documentation, parameters and attributes of ABAP Method CONTROLL_SEARCH 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 CONTROLL_SEARCH can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CONTROLL_SEARCH
.| Name | Type | Data Type | Description | Default Value |
| IT_SEL_CRITERIA | Importing | TYPE DPR_TT_API_NAME_VALUE_PAIR | Search Criteria | |
| IV_HITS | Importing | TYPE I | Number: Search Results | |
| IV_SHELP_NAME | Importing | TYPE SHLPNAME | Name of a search help | |
| IV_STEP_NAME | Importing | TYPE STRING | Time That Is to Be Executed | |
| ES_RESULT_INFO | Exporting | TYPE DPR_TS_UI_SRCH_RESULT_INFO | Information for Results from F4IF_SELECT_VALUES Fnction Mod. | |
| ET_RESULT | Exporting | TYPE DPR_TT_UI_SRCH_RESULT | Results table | |
| EV_MESSAGE_ALREADY_RAISED | Exporting | TYPE BOOLE_D | Message was already raised |
Exceptions of Method CONTROLL_SEARCH
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_ES_RESULT_INFO TYPE DPR_TS_UI_SRCH_RESULT_INFO,
lv_ET_RESULT TYPE DPR_TT_UI_SRCH_RESULT,
lv_IT_SEL_CRITERIA TYPE DPR_TT_API_NAME_VALUE_PAIR,
lv_IV_HITS TYPE I,
lv_IV_SHELP_NAME TYPE SHLPNAME,
lv_IV_STEP_NAME TYPE STRING,
lv_EV_MESSAGE_ALREADY_RAISED TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD lo_class=>CONTROLL_SEARCH(
EXPORTING
IT_SEL_CRITERIA = lv_IT_SEL_CRITERIA
IV_HITS = lv_IV_HITS
IV_SHELP_NAME = lv_IV_SHELP_NAME
IV_STEP_NAME = lv_IV_STEP_NAME
IMPORTING
ES_RESULT_INFO = lv_ES_RESULT_INFO
ET_RESULT = lv_ET_RESULT
EV_MESSAGE_ALREADY_RAISED = lv_EV_MESSAGE_ALREADY_RAISED ).
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