SAP ABAP Data Element SATR_DE_TBRUT (SATR: Gross Time in Microseconds)
Hierarchy
SAP_BASIS (Software Component) SAP Basis Component
   BC-DWB-TOO-RTA (Application Component) Runtime Analysis
     S_ABAP_TRACE (Package) ABAP TRACE
Basic Data
Data Element SATR_DE_TBRUT
Short Description SATR: Gross Time in Microseconds  
Data Type
Category of Dictionary Type D   Domain
Type of Object Referenced     No Information
Domain / Name of Reference Type SATR_DO_ZEIT    
Data Type INT4   4-byte integer, integer number with sign 
Length 10    
Decimal Places 0    
Output Length 10    
Value Table      
Further Characteristics
Search Help: Name    
Search Help: Parameters    
Parameter ID   
Default Component name    
Change document    
No Input History    
Basic direction is set to LTR    
No BIDI Filtering    
Field Label
  Length  Field Label  
Short 10 Gross 
Medium 15 Gross [Micros] 
Long 30 Gross Time [Microseconds] 
Heading 40 Gross Time [Microseconds] 
Documentation

Definition

The gross time of a record A in the ABAP runtime measurement is made up of two parts:

  • Part 1: used net time in A
    This time is the sum of the net times of all the ABAP statements in A, that did not write any runtime records themselves.
  • Part 2: Total of all the gross times of all the statements called in A that did write runtime records themselves.

Note that the number of ABAP statements that lead to a record in the runtime measurement is determined by the measurement variant used. By changing the measurement variant, the proportions of the two parts (and therefore also the relationship between internal and external time, for example) can change.

Use

Use the gross time to find program branches with high runtimes. The best way to improve the performance of your application is to avoid unnecessary program parts and shorten long checks.

Dependencies

Example

Method X contains a loop and a call of method Y, as well as other ABAP statements.
The representation in the runtime measurement is dependent on the measurement variant selected.

  • Read operations on internal table not selected:
    Gross time (X) = Gross time (Y) + net time (all ABAP statements, inc. loop)
  • Read operations on internal table selected:
    Gross time (X) = Gross time (Y) + gross time (Loop) + net time(ABAP statements without loop)

History
Last changed by/on SAP  20140117 
SAP Release Created in 700