C_ChangeRecordClassVH_2

DDL: C_CHANGERECORDCLASSVH_2 Type: view_entity CONSUMPTION Package: VDM_PLMB_CR

Classification Class

C_ChangeRecordClassVH_2 is a Consumption CDS View that provides data about "Classification Class" in SAP S/4HANA. It reads from 1 data source (I_ClfnClass) and exposes 5 fields with key fields Class, ClassType. 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_ClfnClass Class from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ClfnClassDescription _ClassDescription _ClassDescription.ClassInternalID = $projection.ClassInternalID and _ClassDescription.Language = $session.system_language

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Classification Class view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Class view
Consumption.ranked true view
Search.searchable true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2097A ASQL_F2097A C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Class I_ClfnClass Class User Group
KEY ClassType I_ClfnClass ClassType X Flag
ClassInternalID ClassInternalID Int class no.
ClassMaintAuthGrp ClassMaintAuthGrp Class maint.
ClassDescription _ClassDescription ClassDescription Description

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_ChangeRecordClassVH_2.
-- 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_ChangeRecordClassVH_2 AS
SELECT
  Class.Class AS Class,
  Class.ClassType AS ClassType,
  ClassInternalID,
  ClassMaintAuthGrp,
  _ClassDescription.ClassDescription AS ClassDescription
FROM I_ClfnClass AS Class
LEFT OUTER JOIN I_ClfnClassDescription AS _ClassDescription ON _ClassDescription.ClassInternalID = ClassInternalID AND _ClassDescription.Language = $session.system_language  -- association [0..1]
;