GET_KEY_FIELDS SAP Method Pass basic data to ISR BAdI









Below is documentation, parameters and attributes of ABAP Method GET_KEY_FIELDS within SAP class IF_USMD_EVENT_ISR. 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_USMD_EVENT_ISR 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_KEY_FIELDS can also be found below:

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


Parameters of Method GET_KEY_FIELDS

.

NameTypeData TypeDescriptionDefault Value
IF_TEMPLATEImportingTYPE
USMD_FLG
Financial MDM: General Indicator
EO_MODELExportingTYPE REF TO
IF_USMD_MODEL
MDM Data Model for Access from SAP Standard
EO_UI_SERVICEExportingTYPE REF TO
IF_USMD_UI_SERVICES
Service Interface for UI
ET_VALUEExportingTYPE
USMD_TS_VALUE
Field Name and Value
E_CREQUESTExportingTYPE
USMD_CREQUEST
Change Request
E_CREQ_INDEXExportingTYPE
USMD_CREQUEST_WFINDEX
Workflow Index
E_CREQ_STEPExportingTYPE
USMD_CREQUEST_APPSTEP
Workflow Step Number
E_CREQ_TYPEExportingTYPE
USMD_CREQUEST_TYPE
Type of Change Request
E_EDITIONExportingTYPE
USMD_EDITION
Edition
E_ENTITYExportingTYPE
USMD_ENTITY
Entity Type



Exceptions of Method GET_KEY_FIELDS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_USMD_EVENT_ISR.
DATA: lv_EO_MODEL TYPE IF_USMD_MODEL,
lv_EO_UI_SERVICE TYPE IF_USMD_UI_SERVICES,
lv_ET_VALUE TYPE USMD_TS_VALUE,
lv_E_CREQUEST TYPE USMD_CREQUEST,
lv_E_CREQ_INDEX TYPE USMD_CREQUEST_WFINDEX,
lv_E_CREQ_STEP TYPE USMD_CREQUEST_APPSTEP,
lv_E_CREQ_TYPE TYPE USMD_CREQUEST_TYPE,
lv_E_EDITION TYPE USMD_EDITION,
lv_E_ENTITY TYPE USMD_ENTITY,
lv_IF_TEMPLATE TYPE USMD_FLG,
lv_other TYPE c.

CALL METHOD lo_class=>GET_KEY_FIELDS(
EXPORTING
IF_TEMPLATE = lv_IF_TEMPLATE
IMPORTING
EO_MODEL = lv_EO_MODEL
EO_UI_SERVICE = lv_EO_UI_SERVICE
ET_VALUE = lv_ET_VALUE
E_CREQUEST = lv_E_CREQUEST
E_CREQ_INDEX = lv_E_CREQ_INDEX
E_CREQ_STEP = lv_E_CREQ_STEP
E_CREQ_TYPE = lv_E_CREQ_TYPE
E_EDITION = lv_E_EDITION
E_ENTITY = lv_E_ENTITY ).

Links to Related Class(s)

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