P_ChmlProdCatztnReuse

DDL: P_CHMLPRODCATZTNREUSE Type: view BASIC

P_ChmlProdCatztnReuse is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 4 fields with key fields ProdCmplncPhrsUUID, ProdCmplncPhrs. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l P_ChmlProdCatztn from

Associations (1)

CardinalityTargetAliasCondition
[0..*] P_ChmlProdCatztnReuseText _Text $projection.ProdCmplncPhrs = _Text.ProdCmplncPhrs

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PCHMLPRDCZREUSE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey ProdCmplncPhrs view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProdCmplncPhrsUUID
KEY ProdCmplncPhrs dd07l domvalue_l Lower Value
ProdCmplncPhrsText
_Text _Text

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 P_ChmlProdCatztnReuse.
-- 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 P_ChmlProdCatztnReuse AS
SELECT
  hextobin('00000000000000000000000000000000') AS ProdCmplncPhrsUUID,
  P_ChmlProdCatztn.domvalue_l AS ProdCmplncPhrs,
  _Text[1: Language = $session.system_language].ProdCmplncPhrsText AS ProdCmplncPhrsText
FROM dd07l AS P_ChmlProdCatztn
LEFT OUTER JOIN P_ChmlProdCatztnReuseText AS _Text ON ProdCmplncPhrs = _Text.ProdCmplncPhrs  -- association [0..*]
;