tmo_exp_x_provider_r

DDL: TMO_EXP_X_PROVIDER_R SQL: TMO_EXP_PRV_WV Type: view

Telemetry Provider (Cross-Client)

tmo_exp_x_provider_r is a CDS View that provides data about "Telemetry Provider (Cross-Client)" in SAP S/4HANA. It reads from 2 data sources (t000, tmo_exp_prv_w) and exposes 12 fields with key fields Client, Provider_Name.

Data Sources (2)

SourceAliasJoin Type
t000 _Clients cross
tmo_exp_prv_w _Provider from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName TMO_EXP_PRV_WV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Telemetry Provider (Cross-Client) view
Metadata.ignorePropagatedAnnotations true view
ClientDependent false view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY Client t000 mandt Editing Client
KEY Provider_Name tmo_exp_prv_w provider_name Provider Name
Provider_Category tmo_exp_prv_w category Violation Category
Protocol tmo_exp_prv_w protocol Single-Character Flag
Implementation_Name tmo_exp_prv_w implementation Provider ID
Configuration_Name tmo_exp_prv_w configuration Text Analysis Method
Abap_Language_Version tmo_exp_prv_w abap_language_version Language Version
Instantiation tmo_exp_prv_w instantiation
Created_By tmo_exp_prv_w created_by Version Created By
Created_At tmo_exp_prv_w created_at Uploaded On
Changed_By tmo_exp_prv_w changed_by User Name
Changed_At tmo_exp_prv_w changed_at Timestamp

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 tmo_exp_x_provider_r.
-- 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: TMO_EXP_PRV_WV

CREATE VIEW tmo_exp_x_provider_r AS
SELECT
  _Clients.mandt AS Client,
  _Provider.provider_name AS Provider_Name,
  _Provider.category AS Provider_Category,
  _Provider.protocol AS Protocol,
  _Provider.implementation AS Implementation_Name,
  _Provider.configuration AS Configuration_Name,
  _Provider.abap_language_version AS Abap_Language_Version,
  _Provider.instantiation AS Instantiation,
  _Provider.created_by AS Created_By,
  _Provider.created_at AS Created_At,
  _Provider.changed_by AS Changed_By,
  _Provider.changed_at AS Changed_At
FROM tmo_exp_prv_w AS _Provider
CROSS JOIN t000 AS _Clients
;