C_ChangeRecordCharcVH

DDL: C_CHANGERECORDCHARCVH Type: view_entity CONSUMPTION Package: VDM_PLMB_CR

Characteristic

C_ChangeRecordCharcVH is a Consumption CDS View that provides data about "Characteristic" in SAP S/4HANA. It reads from 1 data source (I_ClfnCharcBasic) and exposes 4 fields with key field CharcInternalID. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F2097A). Part of development package VDM_PLMB_CR.

Data Sources (1)

SourceAliasJoin Type
I_ClfnCharcBasic I_ClfnCharcBasic from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ClfnCharcDesc _CharcDescription $projection.CharcInternalID = _CharcDescription.CharcInternalID and _CharcDescription.Language = $session.system_language

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Characteristic view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2097A ASQL_F2097A C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CharcInternalID CharcInternalID Characteristic Internal ID
Characteristic Characteristic Field Name
CharcDataType CharcDataType Format
CharcDescription _CharcDescription CharcDescription

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 C_ChangeRecordCharcVH.
-- 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 C_ChangeRecordCharcVH AS
SELECT
  CharcInternalID,
  Characteristic,
  CharcDataType,
  _CharcDescription.CharcDescription AS CharcDescription
FROM I_ClfnCharcBasic
LEFT OUTER JOIN I_ClfnCharcDesc AS _CharcDescription ON CharcInternalID = _CharcDescription.CharcInternalID AND _CharcDescription.Language = $session.system_language  -- association [0..*]
;