P_EquipmentStatus

DDL: P_EQUIPMENTSTATUS SQL: PEQUIPMENTSTATUS Type: view COMPOSITE

P_EquipmentStatus is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_Equipment, I_StatusObjectActiveStatus) and exposes 2 fields with key field Equipment.

Data Sources (2)

SourceAliasJoin Type
I_Equipment Equipment from
I_StatusObjectActiveStatus jest inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PEQUIPMENTSTATUS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Equipment I_Equipment Equipment Equipment check
MaintObjectInternalID I_Equipment MaintObjectInternalID Object number

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 P_EquipmentStatus.
-- 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: PEQUIPMENTSTATUS

CREATE VIEW P_EquipmentStatus AS
SELECT
  Equipment.Equipment AS Equipment,
  Equipment.MaintObjectInternalID AS MaintObjectInternalID
FROM I_Equipment AS Equipment
INNER JOIN I_StatusObjectActiveStatus AS jest ON /* join condition not captured in parsed metadata */
;