GET_LOGGING SAP Method Read Scope of Logging









Below is documentation, parameters and attributes of ABAP Method GET_LOGGING within SAP class IF_UKM_CUSTOMIZING. 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_UKM_CUSTOMIZING 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_LOGGING can also be found below:

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


Parameters of Method GET_LOGGING

.

NameTypeData TypeDescriptionDefault Value
I_LIMIT_RULEImportingTYPE
UKM_LIMIT_RULE
Rule for Calculating Score and Credit Limit
I_PROVIDERImportingTYPE
UKM_PROVIDER_EXT
External Provider
E_LOGGINGReturningTYPE
UKM_LOGGING
Scope of Logging



Exceptions of Method GET_LOGGING

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_UKM_CUSTOMIZING.
DATA: lv_E_LOGGING TYPE UKM_LOGGING,
lv_I_LIMIT_RULE TYPE UKM_LIMIT_RULE,
lv_I_PROVIDER TYPE UKM_PROVIDER_EXT,
lv_other TYPE c.

CALL METHOD lo_class=>GET_LOGGING(
EXPORTING
I_LIMIT_RULE = lv_I_LIMIT_RULE
I_PROVIDER = lv_I_PROVIDER
RECEIVING
E_LOGGING = lv_E_LOGGING )



"Alternate coding for Method Call with returning parameter
lv_E_LOGGING = lo_class=>GET_LOGGING(
EXPORTING
I_LIMIT_RULE = lv_I_LIMIT_RULE
I_PROVIDER = lv_I_PROVIDER ).

Links to Related Class(s)

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