PROCESS_METRIC_JOBLOG_APPCNTR SAP Method of class /SOMO/CL_IM_AJOB_HPSSMSE









Below is documentation, parameters and attributes of ABAP Method PROCESS_METRIC_JOBLOG_APPCNTR within SAP class /SOMO/CL_IM_AJOB_HPSSMSE. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /SOMO/CL_IM_AJOB_HPSSMSE 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 PROCESS_METRIC_JOBLOG_APPCNTR can also be found below:

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


Parameters of Method PROCESS_METRIC_JOBLOG_APPCNTR

.

NameTypeData TypeDescriptionDefault Value
IN_CALL_LISTImportingTYPE
/SOMO/MA_S_CALL_LIST
BPMon: Call list structure
IN_CONTEXT_IDImportingTYPE
/SOMO/MA_D_GUID32
BPMon: GUID32
IN_JOBINSTANCESImportingTYPE
/SOMO/MA_T_JOBINSTANCE_INFO
Table type job instance information
IN_JOB_MONITORING_INFOImportingTYPE
/SOMO/JOBMON11
Job schedule information
IN_JOB_SCHEDULE_BEFOREImportingTYPE
/SOMO/JOBMON11
Job schedule information
IN_SOLMAN_INSTNOImportingTYPE
/SOMO/MA_D_INSTNO
BPMon: Installation number
IN_SOLMAN_SIDImportingTYPE
/SOMO/MA_D_SYSTID
BPMon: System ID
IT_METRIC_DEFImportingTYPE
/SOMO/MA_T_METRIC_DEF
Unified job monitoring - metric definition
CS_METRIC_DEFChangingTYPE
/SOMO/JOBMON04
Job Metric definition table
CT_EXISTING_METRIC_DATAChangingTYPE
/SOMO/MA_T_METRIC_DATA
Unified job monitoring - metric data
CT_NEW_METRIC_DATAChangingTYPE
/SOMO/MA_T_METRIC_DATA
Unified job monitoring - metric data
CT_RESULTChangingTYPE
/SDF/E2E_RESULT_TT
Table Type for the Result of the Data Collectors
CT_UPD_METRIC_DATAChangingTYPE
/SOMO/MA_T_METRIC_DATA
Unified job monitoring - metric data



Exceptions of Method PROCESS_METRIC_JOBLOG_APPCNTR

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lo_class TYPE REF TO /SOMO/CL_IM_AJOB_HPSSMSE.
DATA: lv_CS_METRIC_DEF TYPE /SOMO/JOBMON04,
lv_CT_EXISTING_METRIC_DATA TYPE /SOMO/MA_T_METRIC_DATA,
lv_CT_NEW_METRIC_DATA TYPE /SOMO/MA_T_METRIC_DATA,
lv_CT_RESULT TYPE /SDF/E2E_RESULT_TT,
lv_CT_UPD_METRIC_DATA TYPE /SOMO/MA_T_METRIC_DATA,
lv_IN_CALL_LIST TYPE /SOMO/MA_S_CALL_LIST,
lv_IN_CONTEXT_ID TYPE /SOMO/MA_D_GUID32,
lv_IN_JOBINSTANCES TYPE /SOMO/MA_T_JOBINSTANCE_INFO,
lv_IN_JOB_MONITORING_INFO TYPE /SOMO/JOBMON11,
lv_IN_JOB_SCHEDULE_BEFORE TYPE /SOMO/JOBMON11,
lv_IN_SOLMAN_INSTNO TYPE /SOMO/MA_D_INSTNO,
lv_IN_SOLMAN_SID TYPE /SOMO/MA_D_SYSTID,
lv_IT_METRIC_DEF TYPE /SOMO/MA_T_METRIC_DEF,
lv_other TYPE c.

CALL METHOD lo_class=>PROCESS_METRIC_JOBLOG_APPCNTR(
EXPORTING
IN_CALL_LIST = lv_IN_CALL_LIST
IN_CONTEXT_ID = lv_IN_CONTEXT_ID
IN_JOBINSTANCES = lv_IN_JOBINSTANCES
IN_JOB_MONITORING_INFO = lv_IN_JOB_MONITORING_INFO
IN_JOB_SCHEDULE_BEFORE = lv_IN_JOB_SCHEDULE_BEFORE
IN_SOLMAN_INSTNO = lv_IN_SOLMAN_INSTNO
IN_SOLMAN_SID = lv_IN_SOLMAN_SID
IT_METRIC_DEF = lv_IT_METRIC_DEF
CHANGING
CS_METRIC_DEF = lv_CS_METRIC_DEF
CT_EXISTING_METRIC_DATA = lv_CT_EXISTING_METRIC_DATA
CT_NEW_METRIC_DATA = lv_CT_NEW_METRIC_DATA
CT_RESULT = lv_CT_RESULT
CT_UPD_METRIC_DATA = lv_CT_UPD_METRIC_DATA ).

Links to Related Class(s)

/SOMO/CL...
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!