GET_RESULTS SAP Method Transmission of Search Results to Caller
Below is documentation, parameters and attributes of ABAP Method GET_RESULTS within SAP class IF_EX_BADI_AUT_ARCHIVE. 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 IF_EX_BADI_AUT_ARCHIVE 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_RESULTS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_RESULTS
.| Name | Type | Data Type | Description | Default Value |
| IM_JOB | Importing | TYPE FLAG | Indicator Whether Evaluation Carried Out as Job | |
| EX_AUTHORITY | Exporting | TYPE ENHAT_AUTHORITY_TAB | Result of Authorization Check for Search | |
| EX_RESULT_CDO | Exporting | TYPE ENHAT_CDO_TAB | Results for Creation of Change Document | |
| EX_RESULT_TABLOG | Exporting | TYPE ENHAT_TABLOG_TAB | Results for Table Logging | |
| EX_SELECT_OPTIONS | Exporting | TYPE ENHAT_EVAL_TAB | Selection Criteria for Archive Search |
Exceptions of Method GET_RESULTS
ENHAT_AUTHORITY_TAB
ENHAT_CDO_TAB
ENHAT_TABLOG_TAB
ENHAT_EVAL_TAB
Example ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_AUT_ARCHIVE.
DATA: lv_EX_AUTHORITY TYPE ENHAT_AUTHORITY_TAB,
lv_EX_RESULT_CDO TYPE ENHAT_CDO_TAB,
lv_EX_RESULT_TABLOG TYPE ENHAT_TABLOG_TAB,
lv_EX_SELECT_OPTIONS TYPE ENHAT_EVAL_TAB,
lv_IM_JOB TYPE FLAG,
lv_other TYPE c.
CALL METHOD lo_class=>GET_RESULTS(
EXPORTING
IM_JOB = lv_IM_JOB
IMPORTING
EX_AUTHORITY = lv_EX_AUTHORITY
EX_RESULT_CDO = lv_EX_RESULT_CDO
EX_RESULT_TABLOG = lv_EX_RESULT_TABLOG
EX_SELECT_OPTIONS = lv_EX_SELECT_OPTIONS ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects