GET_SCENARIO_DETAILS SAP Method Deliver Detail Information to Scenarios









Below is documentation, parameters and attributes of ABAP Method GET_SCENARIO_DETAILS within SAP class IF_HRASR00_PROCESS_SEARCH. 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_HRASR00_PROCESS_SEARCH into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method GET_SCENARIO_DETAILS can also be found below:

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


Parameters of Method GET_SCENARIO_DETAILS

.

NameTypeData TypeDescriptionDefault Value
ACTIVITYImportingTYPE
ASR_ACTIVITY
Activities
MESSAGE_HANDLERImportingTYPE REF TO
IF_HRBAS_MESSAGE_HANDLER
HR-PD Infotypes: Messages
NO_AUTH_CHECKImportingTYPE
BOOLE_D
Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
SCENARIO_DETAIL_CRITERIAImportingTYPE
HRASR00SCENARIO_DETAIL_IN
HR Administrative Services: Input for Scenario Details
IS_OKExportingTYPE
BOOLE_D
Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
SCENARIO_DETAIL_OUTPUTExportingTYPE
HRASR00SCENARIO_DETAIL_OUT
HR Administrative Services: Output for Scenario Details



Exceptions of Method GET_SCENARIO_DETAILS

This method does not have any exceptions

Example ABAP coding


DATA: lv_ACTIVITY TYPE ASR_ACTIVITY,
lv_IS_OK TYPE BOOLE_D,
lv_MESSAGE_HANDLER TYPE IF_HRBAS_MESSAGE_HANDLER,
lv_NO_AUTH_CHECK TYPE BOOLE_D,
lv_SCENARIO_DETAIL_CRITERIA TYPE HRASR00SCENARIO_DETAIL_IN,
lv_SCENARIO_DETAIL_OUTPUT TYPE HRASR00SCENARIO_DETAIL_OUT,
lv_other TYPE c.

CALL METHOD IF_HRASR00_PROCESS_SEARCH=>GET_SCENARIO_DETAILS(
EXPORTING
ACTIVITY = lv_ACTIVITY
MESSAGE_HANDLER = lv_MESSAGE_HANDLER
NO_AUTH_CHECK = lv_NO_AUTH_CHECK
SCENARIO_DETAIL_CRITERIA = lv_SCENARIO_DETAIL_CRITERIA
IMPORTING
IS_OK = lv_IS_OK
SCENARIO_DETAIL_OUTPUT = lv_SCENARIO_DETAIL_OUTPUT ).

Links to Related Class(s)

IF_HRASR...
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!