R_TrdgProcessVariantTypeText

DDL: R_TRDGPROCESSVARIANTTYPETEXT Type: view_entity BASIC

Variant Type of Trading Process - Text

R_TrdgProcessVariantTypeText is a Basic CDS View that provides data about "Variant Type of Trading Process - Text" in SAP S/4HANA. It reads from 1 data source (tewtypet) and exposes 5 fields with key fields TradingProcessVariantType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tewtypet tewtypet from

Associations (2)

CardinalityTargetAliasCondition
[0..1] R_TrdgProcessVariantType _TrdgProcessVariantType $projection.TradingProcessVariantType = _TrdgProcessVariantType.TradingProcessVariantType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey TradingProcessVariantType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
Analytics.internalName #LOCAL view
EndUserText.label Variant Type of Trading Process - Text view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TradingProcessVariantType tew_type TEW Type
KEY Language spras Off. Language
TradingProcessVariantTypeName text User Group
_TrdgProcessVariantType _TrdgProcessVariantType
_Language _Language

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 R_TrdgProcessVariantTypeText.
-- 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.

CREATE VIEW R_TrdgProcessVariantTypeText AS
SELECT
  tew_type AS TradingProcessVariantType,
  spras AS Language,
  text AS TradingProcessVariantTypeName
FROM tewtypet
LEFT OUTER JOIN R_TrdgProcessVariantType AS _TrdgProcessVariantType ON TradingProcessVariantType = _TrdgProcessVariantType.TradingProcessVariantType  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;