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

.

NameTypeData TypeDescriptionDefault Value
IM_JOBImportingTYPE
FLAG
Indicator Whether Evaluation Carried Out as Job
EX_AUTHORITYExportingTYPE
ENHAT_AUTHORITY_TAB
Result of Authorization Check for Search
EX_RESULT_CDOExportingTYPE
ENHAT_CDO_TAB
Results for Creation of Change Document
EX_RESULT_TABLOGExportingTYPE
ENHAT_TABLOG_TAB
Results for Table Logging
EX_SELECT_OPTIONSExportingTYPE
ENHAT_EVAL_TAB
Selection Criteria for Archive Search



Exceptions of Method GET_RESULTS

EX_AUTHORITYExportingTYPE
ENHAT_AUTHORITY_TABResult of Authorization Check for SearchEX_RESULT_CDOExportingTYPE
ENHAT_CDO_TABResults for Creation of Change DocumentEX_RESULT_TABLOGExportingTYPE
ENHAT_TABLOG_TABResults for Table LoggingEX_SELECT_OPTIONSExportingTYPE
ENHAT_EVAL_TABSelection Criteria for Archive SearchGET_ERROR - Error During Evaluation

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!