s_sclt_trace_user

DDL: S_SCLT_TRACE_USER SQL: S_V_SCLT_TRC_USR Type: view

Trace user

s_sclt_trace_user is a CDS View that provides data about "Trace user" in SAP S/4HANA. It reads from 2 data sources (I_User, s_sclt_customeruser_ddl) and exposes 3 fields with key field UserID.

Data Sources (2)

SourceAliasJoin Type
I_User I_User union
s_sclt_customeruser_ddl s_sclt_customeruser_ddl from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName S_V_SCLT_TRC_USR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Trace user view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User Name
UserDescription Description Full Name
UserDescription UserDescription Full Name

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 s_sclt_trace_user.
-- 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: S_V_SCLT_TRC_USR

CREATE VIEW s_sclt_trace_user AS
SELECT
  UserID,
  Description AS UserDescription
FROM s_sclt_customeruser_ddl
-- UNION with additional select branch(es): I_User
;