CREATE_HIT_AUFRUF_AGG SAP Method Generate Hit Lists from TRACE Table
Below is documentation, parameters and attributes of ABAP Method CREATE_HIT_AUFRUF_AGG within SAP class CL_ABAP_TRACE_DATA. 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 CL_ABAP_TRACE_DATA 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 directlyThe following technical details of method CREATE_HIT_AUFRUF_AGG can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CREATE_HIT_AUFRUF_AGG
.| Name | Type | Data Type | Description | Default Value |
| I_AGG_TYPE | Importing | TYPE SYCHAR01 | Fully aggregated | |
| I_TRACE_ID | Importing | TYPE SATR_DE_ID | ||
| IT_HIT1 | Exporting | TYPE SATR_T_HIT1 | ||
| IT_HIT1_CO | Exporting | TYPE SATR_T_HIT1_CO | SATR: Table of Hit List 1 with CONTOFFS (Aggreg. Call Pos.) | |
| IT_HIT2 | Exporting | TYPE SATR_T_HIT2 | ||
| IT_TRACE | Changing | TYPE SATR_T_AUSTAB_GESAMT |
Exceptions of Method CREATE_HIT_AUFRUF_AGG
This method does not have any exceptionsExample ABAP coding
DATA: lv_IT_HIT1 TYPE SATR_T_HIT1,
lv_IT_HIT1_CO TYPE SATR_T_HIT1_CO,
lv_IT_HIT2 TYPE SATR_T_HIT2,
lv_IT_TRACE TYPE SATR_T_AUSTAB_GESAMT,
lv_I_AGG_TYPE TYPE SYCHAR01,
lv_I_TRACE_ID TYPE SATR_DE_ID,
lv_other TYPE c.
CALL METHOD CL_ABAP_TRACE_DATA=>CREATE_HIT_AUFRUF_AGG(
EXPORTING
I_AGG_TYPE = lv_I_AGG_TYPE
I_TRACE_ID = lv_I_TRACE_ID
IMPORTING
IT_HIT1 = lv_IT_HIT1
IT_HIT1_CO = lv_IT_HIT1_CO
IT_HIT2 = lv_IT_HIT2
CHANGING
IT_TRACE = lv_IT_TRACE ).
Links to Related Class(s)
CL_ABAP_...Full list of available SAP object classes
Search for further information about these or an SAP related objects