GET_SETTINGS SAP Method Settings for Archive Evaluation









Below is documentation, parameters and attributes of ABAP Method GET_SETTINGS 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_SETTINGS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method GET_SETTINGS

.

NameTypeData TypeDescriptionDefault Value
EX_CDO_ARCHIVESExportingTYPE
CHAR1
CDO Archive Evaluation => Constants '', A, B, C
EX_CDO_JOBExportingTYPE
CHAR1
CDO Evaluation as Job => 'A'
EX_DB_ARCHIVESExportingTYPE
CHAR1
DB Archive Evaluation => Constants '', A, B, C
EX_DB_JOBExportingTYPE
CHAR1
DB Evaluation as Job => 'A



Exceptions of Method GET_SETTINGS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_AUT_ARCHIVE.
DATA: lv_EX_CDO_ARCHIVES TYPE CHAR1,
lv_EX_CDO_JOB TYPE CHAR1,
lv_EX_DB_ARCHIVES TYPE CHAR1,
lv_EX_DB_JOB TYPE CHAR1,
lv_other TYPE c.

CALL METHOD lo_class=>GET_SETTINGS(
IMPORTING
EX_CDO_ARCHIVES = lv_EX_CDO_ARCHIVES
EX_CDO_JOB = lv_EX_CDO_JOB
EX_DB_ARCHIVES = lv_EX_DB_ARCHIVES
EX_DB_JOB = lv_EX_DB_JOB ).

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!