BUILD_TABS_WITHOUT_DB_NEW SAP Method Build SATR_AUSTAB_GESAMT and SATR_ZEITEN Without DB Times
Below is documentation, parameters and attributes of ABAP Method BUILD_TABS_WITHOUT_DB_NEW 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 BUILD_TABS_WITHOUT_DB_NEW can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method BUILD_TABS_WITHOUT_DB_NEW
.| Name | Type | Data Type | Description | Default Value |
| P_IT_ZUO | Importing | TYPE SATR_T_ZUO | SATR : Assignment Table ID/SUBID for SE30 Groupings | |
| C_AUSTAB | Changing | TYPE SATR_T_AUSTAB_GESAMT | SATR : Table with All TRACE Information | |
| C_ZEITEN | Changing | TYPE SATR_T_AUSTAB_ZEIT | SATR : Table for Measured Times |
Exceptions of Method BUILD_TABS_WITHOUT_DB_NEW
This method does not have any exceptionsExample ABAP coding
DATA: lv_C_AUSTAB TYPE SATR_T_AUSTAB_GESAMT,
lv_C_ZEITEN TYPE SATR_T_AUSTAB_ZEIT,
lv_P_IT_ZUO TYPE SATR_T_ZUO,
lv_other TYPE c.
CALL METHOD CL_ABAP_TRACE_DATA=>BUILD_TABS_WITHOUT_DB_NEW(
EXPORTING
P_IT_ZUO = lv_P_IT_ZUO
CHANGING
C_AUSTAB = lv_C_AUSTAB
C_ZEITEN = lv_C_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