A_ClfnCharcValueDescForKeyDate

DDL: A_CLFNCHARCVALUEDESCFORKEYDATE SQL: ANGCCHR06 Type: view_entity CONSUMPTION

Characteristic Value Descriptions

A_ClfnCharcValueDescForKeyDate is a Consumption CDS View that provides data about "Characteristic Value Descriptions" in SAP S/4HANA. It reads from 1 data source (I_ClfnCharcValDescForKeyDateTP) and exposes 11 fields with key fields CharcInternalID, CharcValuePositionNumber, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ClfnCharcValDescForKeyDateTP I_ClfnCharcValDescForKeyDateTP from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_ClfnCharacteristicForKeyDate _Characteristic $projection.CharcInternalID = _Characteristic.CharcInternalID

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Characteristic Value Descriptions view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT 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 (11)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID CharcInternalID Characteristic Internal ID
KEY CharcValuePositionNumber CharcValuePositionNumber
KEY Language Language Report Text Language
CharcValueDescription CharcValueDescription
ChangeNumber ChangeNumber Change Number
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
KeyDate
CharcLastChangedDateTime CharcLastChangedDateTime
_CharacteristicValue _CharacteristicValue
_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_ClfnCharcValueDescForKeyDate.
-- 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: ANGCCHR06
-- Parameters: P_KeyDate : sydate

CREATE VIEW A_ClfnCharcValueDescForKeyDate AS
SELECT
  CharcInternalID,
  CharcValuePositionNumber,
  Language,
  CharcValueDescription,
  ChangeNumber,
  ValidityStartDate,
  ValidityEndDate,
  $parameters.P_KeyDate AS KeyDate,
  CharcLastChangedDateTime
FROM I_ClfnCharcValDescForKeyDateTP
LEFT OUTER JOIN A_ClfnCharacteristicForKeyDate AS _Characteristic ON CharcInternalID = _Characteristic.CharcInternalID  -- association [1..1]
;