/iwfnd/cds_i_tperf

DDL: /IWFND/CDS_I_TPERF SQL: /IWFND/TPERF Type: view

Performance Trace

/iwfnd/cds_i_tperf is a CDS View that provides data about "Performance Trace" in SAP S/4HANA. It reads from 2 data sources (/iwfnd/su_tperf, USATTRIDDEF_DEFAULT) and exposes 23 fields with key fields opid, sapclient.

Data Sources (2)

SourceAliasJoin Type
/iwfnd/su_tperf tperf from
USATTRIDDEF_DEFAULT USATTRIDDEF_DEFAULT left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName /IWFND/TPERF view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #CLIENT_DEPENDENT view
EndUserText.label Performance Trace view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY opid /iwfnd/su_tperf opid Operation ID
KEY sapclient /iwfnd/su_tperf sapclient Client ID
timestamp /iwfnd/su_tperf timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
username /iwfnd/su_tperf username User who owns item
errorstate /iwfnd/su_tperf errorstate Error State
expiry_date /iwfnd/su_tperf expiry_date Expiry Date
location /iwfnd/su_tperf location Text
icf_node /iwfnd/su_tperf icf_node ICF Node
namespace /iwfnd/su_tperf namespace Service Namespace
service_name /iwfnd/su_tperf service_name Service Name
source_line /iwfnd/su_tperf source_line Source Line
source_class /iwfnd/su_tperf source_class Class
applserver /iwfnd/su_tperf applserver Application Server
destination /iwfnd/su_tperf destination Destination
request_id /iwfnd/su_tperf request_id Request ID
request_uri /iwfnd/su_tperf request_uri Request URI
details /iwfnd/su_tperf details Performance Trace Details
request_size /iwfnd/su_tperf request_size Request Size in Bytes
http_method /iwfnd/su_tperf http_method HTTP Method
proc_time /iwfnd/su_tperf proc_time Processing Time in msec
appl_time /iwfnd/su_tperf appl_time Application Time in msec
format_type /iwfnd/su_tperf format_type Format (xml/json/mixed/xlsx/...)
non_gw_time /iwfnd/su_tperf non_gw_time Non-GW Time in msec

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view /iwfnd/cds_i_tperf.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: /IWFND/TPERF

CREATE VIEW /iwfnd/cds_i_tperf AS
SELECT
  tperf.opid AS opid,
  tperf.sapclient AS sapclient,
  tperf.timestamp AS timestamp,
  tperf.username AS username,
  tperf.errorstate AS errorstate,
  tperf.expiry_date AS expiry_date,
  tperf.location AS location,
  tperf.icf_node AS icf_node,
  tperf.namespace AS namespace,
  tperf.service_name AS service_name,
  tperf.source_line AS source_line,
  tperf.source_class AS source_class,
  tperf.applserver AS applserver,
  tperf.destination AS destination,
  tperf.request_id AS request_id,
  tperf.request_uri AS request_uri,
  tperf.details AS details,
  tperf.request_size AS request_size,
  tperf.http_method AS http_method,
  tperf.proc_time AS proc_time,
  tperf.appl_time AS appl_time,
  tperf.format_type AS format_type,
  tperf.non_gw_time AS non_gw_time
FROM /iwfnd/su_tperf AS tperf
LEFT OUTER JOIN USATTRIDDEF_DEFAULT ON /* join condition not captured in parsed metadata */
;