A_EquipmentClfnClass

DDL: A_EQUIPMENTCLFNCLASS Type: view_entity COMPOSITE

Equipment Class

A_EquipmentClfnClass is a Composite CDS View that provides data about "Equipment Class" in SAP S/4HANA. It reads from 2 data sources (I_ClfnObjectClassForKeyDate, I_Equipment) and exposes 16 fields with key fields Equipment, ClassInternalID, ClassType. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_ClfnObjectClassForKeyDate I_ClfnObjectClassForKeyDate from
I_Equipment I_Equipment inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_EquipmentClfnClassChar _Characteristic

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Equipment Class view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY Equipment I_Equipment Equipment Equipment check
KEY ClassInternalID Classification ClassInternalID Int class no.
KEY ClassType Classification ClassType X Flag
KeyDate
ChangeNumber Classification ChangeNumber Change Number
ClfnStatus Classification ClfnStatus Status
ClassPositionNumber Classification ClassPositionNumber Pos.
ClassIsStandardClass
ClfnObjectInternalID Classification ClfnObjectInternalID
ValidityEndDate Classification ValidityEndDate ValidTo
EquipmentValidityEndDate I_Equipment ValidityEndDate ValidTo
ClassMaintAuthGrp
ClassClassfctnAuthGrp
Class
_Characteristic _Characteristic
_Equipment _Equipment

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_EquipmentClfnClass.
-- 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 A_EquipmentClfnClass AS
SELECT
  I_Equipment.Equipment AS Equipment,
  Classification.ClassInternalID AS ClassInternalID,
  Classification.ClassType AS ClassType,
  $session.system_date AS KeyDate,
  Classification.ChangeNumber AS ChangeNumber,
  Classification.ClfnStatus AS ClfnStatus,
  Classification.ClassPositionNumber AS ClassPositionNumber,
  cast ( Classification.ClassIsStandardClass as stdclass ) AS ClassIsStandardClass,
  Classification.ClfnObjectInternalID AS ClfnObjectInternalID,
  Classification.ValidityEndDate AS ValidityEndDate,
  I_Equipment.ValidityEndDate AS EquipmentValidityEndDate,
  Classification._Class( P_KeyDate:$session.system_date ).ClassMaintAuthGrp AS ClassMaintAuthGrp,
  Classification._Class( P_KeyDate:$session.system_date ).ClassClassfctnAuthGrp AS ClassClassfctnAuthGrp,
  Classification._Class( P_KeyDate:$session.system_date ).Class AS Class
FROM I_ClfnObjectClassForKeyDate
INNER JOIN I_Equipment ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN A_EquipmentClfnClassChar AS _Characteristic ON /* condition not available in parsed metadata */  -- association [0..*]
;