AGG_CONVERT_TO_AUSTAB SAP Method AGGREGATION: Convert Aggregated Tables into AUSTAB









Below is documentation, parameters and attributes of ABAP Method AGG_CONVERT_TO_AUSTAB 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 directly

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

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


Parameters of Method AGG_CONVERT_TO_AUSTAB

.

NameTypeData TypeDescriptionDefault Value
I_ATRA_TRACE_INFOImportingTYPE
SATRI_INFO
SATR: Trace Info
I_IT_AGGImportingTYPE
SATR_T_AGG_OUT
SATR : Int. Table of Aggregated TRACE Records
E_BRUTTO_ZEITExportingTYPE
INT4
Natural Number
E_IT_AUSTABExportingTYPE
SATR_T_AUSTAB_GESAMT
SATR : Table with All TRACE Information
E_IT_TRACEMETHExportingTYPE
SATR_T_TRACEMETH
SATR : Table of Recorded Method Names
E_IT_TRACEPROGExportingTYPE
SATR_T_TRACEPROG
SATR : Table of Recorded Program Names
E_IT_TRACETEXTExportingTYPE
SATR_T_TRACETEXT
SATR : Table of TRACE Text Elements
E_NETTO_ZEITExportingTYPE
INT4
E_SATR_ZEITENExportingTYPE
SATR_ZEITEN
SATR : Structure for Times in Time Measurement



Exceptions of Method AGG_CONVERT_TO_AUSTAB

E_BRUTTO_ZEITExportingTYPE
INT4Natural NumberE_IT_AUSTABExportingTYPE
SATR_T_AUSTAB_GESAMTSATR : Table with All TRACE InformationE_IT_TRACEMETHExportingTYPE
SATR_T_TRACEMETHSATR : Table of Recorded Method NamesE_IT_TRACEPROGExportingTYPE
SATR_T_TRACEPROGSATR : Table of Recorded Program NamesE_IT_TRACETEXTExportingTYPE
SATR_T_TRACETEXTSATR : Table of TRACE Text ElementsE_NETTO_ZEITExportingTYPE
INT4E_SATR_ZEITENExportingTYPE
SATR_ZEITENSATR : Structure for Times in Time MeasurementCX_SY_CONVERSION_OVERFLOW - System exception for overflow in conversion

Example ABAP coding


DATA: lv_E_BRUTTO_ZEIT TYPE INT4,
lv_E_IT_AUSTAB TYPE SATR_T_AUSTAB_GESAMT,
lv_E_IT_TRACEMETH TYPE SATR_T_TRACEMETH,
lv_E_IT_TRACEPROG TYPE SATR_T_TRACEPROG,
lv_E_IT_TRACETEXT TYPE SATR_T_TRACETEXT,
lv_E_NETTO_ZEIT TYPE INT4,
lv_E_SATR_ZEITEN TYPE SATR_ZEITEN,
lv_I_ATRA_TRACE_INFO TYPE SATRI_INFO,
lv_I_IT_AGG TYPE SATR_T_AGG_OUT,
lv_other TYPE c.

CALL METHOD CL_ABAP_TRACE_DATA=>AGG_CONVERT_TO_AUSTAB(
EXPORTING
I_ATRA_TRACE_INFO = lv_I_ATRA_TRACE_INFO
I_IT_AGG = lv_I_IT_AGG
IMPORTING
E_BRUTTO_ZEIT = lv_E_BRUTTO_ZEIT
E_IT_AUSTAB = lv_E_IT_AUSTAB
E_IT_TRACEMETH = lv_E_IT_TRACEMETH
E_IT_TRACEPROG = lv_E_IT_TRACEPROG
E_IT_TRACETEXT = lv_E_IT_TRACETEXT
E_NETTO_ZEIT = lv_E_NETTO_ZEIT
E_SATR_ZEITEN = lv_E_SATR_ZEITEN ).

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



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!