A_ClfnCharcValueForKeyDate

DDL: A_CLFNCHARCVALUEFORKEYDATE SQL: ANGCCHR05 Type: view_entity CONSUMPTION

Characteristic Values

A_ClfnCharcValueForKeyDate is a Consumption CDS View that provides data about "Characteristic Values" in SAP S/4HANA. It reads from 1 data source (I_ClfnCharcValForKeyDateTP) and exposes 21 fields with key fields CharcInternalID, CharcValuePositionNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ClfnCharcValForKeyDateTP I_ClfnCharcValForKeyDateTP from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_ClfnCharcValueDescForKeyDate _CharcValueDesc

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Characteristic Values view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey CharcValuePositionNumber view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
Consumption.filter.businessDate.at true view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID CharacteristicValue CharcInternalID Characteristic Internal ID
KEY CharcValuePositionNumber CharacteristicValue CharcValuePositionNumber
CharcValueDependency CharacteristicValue CharcValueDependency
CharcValue CharacteristicValue CharcValue Char. Value
CharcFromNumericValue CharacteristicValue CharcFromNumericValue Value from
CharcToNumericValue CharacteristicValue CharcToNumericValue Value to
IsDefaultValue CharacteristicValue IsDefaultValue
CharcFromNumericValueUnit CharacteristicValue CharcFromNumericValueUnit Internal UoM
CharcToNumericValueUnit CharacteristicValue CharcToNumericValueUnit Internal UoM
LongTextID CharacteristicValue LongTextID Text ID
ChangeNumber CharacteristicValue ChangeNumber Change Number
DocumentType CharacteristicValue DocumentType Order Type
DocNumber CharacteristicValue DocNumber Document Number
DocumentPart CharacteristicValue DocumentPart Document Part
DocumentVersion CharacteristicValue DocumentVersion Docu. Version
ValidityStartDate CharacteristicValue ValidityStartDate Validity Start Date
ValidityEndDate CharacteristicValue ValidityEndDate ValidTo
KeyDate
CharcLastChangedDateTime CharacteristicValue CharcLastChangedDateTime
_CharcValueDesc _CharcValueDesc
_Characteristic _Characteristic

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

CREATE VIEW A_ClfnCharcValueForKeyDate AS
SELECT
  CharacteristicValue.CharcInternalID AS CharcInternalID,
  CharacteristicValue.CharcValuePositionNumber AS CharcValuePositionNumber,
  CharacteristicValue.CharcValueDependency AS CharcValueDependency,
  CharacteristicValue.CharcValue AS CharcValue,
  CharacteristicValue.CharcFromNumericValue AS CharcFromNumericValue,
  CharacteristicValue.CharcToNumericValue AS CharcToNumericValue,
  CharacteristicValue.IsDefaultValue AS IsDefaultValue,
  CharacteristicValue.CharcFromNumericValueUnit AS CharcFromNumericValueUnit,
  CharacteristicValue.CharcToNumericValueUnit AS CharcToNumericValueUnit,
  CharacteristicValue.LongTextID AS LongTextID,
  CharacteristicValue.ChangeNumber AS ChangeNumber,
  CharacteristicValue.DocumentType AS DocumentType,
  CharacteristicValue.DocNumber AS DocNumber,
  CharacteristicValue.DocumentPart AS DocumentPart,
  CharacteristicValue.DocumentVersion AS DocumentVersion,
  CharacteristicValue.ValidityStartDate AS ValidityStartDate,
  CharacteristicValue.ValidityEndDate AS ValidityEndDate,
  $parameters.P_KeyDate AS KeyDate,
  CharacteristicValue.CharcLastChangedDateTime AS CharcLastChangedDateTime
FROM I_ClfnCharcValForKeyDateTP
LEFT OUTER JOIN A_ClfnCharcValueDescForKeyDate AS _CharcValueDesc ON /* condition not available in parsed metadata */  -- association [0..*]
;