P_CharcCtlgClfnCTimeIntRelDesc

DDL: P_CHARCCTLGCLFNCTIMEINTRELDESC Type: view_entity COMPOSITE

P_CharcCtlgClfnCTimeIntRelDesc is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_ClfnCharcDesc, I_ClfnCharcDesc) and exposes 2 fields with key field CharcInternalID.

Data Sources (2)

SourceAliasJoin Type
I_ClfnCharcDesc I_ClfnCharcDesc from
I_ClfnCharcDesc I_ClfnCharcDesc union_all

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Annotations (7)

NameValueLevelField
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID CharcInternalID Characteristic Internal ID
ValidityEndDate

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_CharcCtlgClfnCTimeIntRelDesc.
-- 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.
-- Parameters: P_KeyDate : sydate

CREATE VIEW P_CharcCtlgClfnCTimeIntRelDesc AS
SELECT
  CharcInternalID,
  max( ValidityEndDate ) AS ValidityEndDate
FROM I_ClfnCharcDesc
-- UNION ALL with additional select branch(es): I_ClfnCharcDesc
;