I_ProjectAssignedOrderVH

DDL: I_PROJECTASSIGNEDORDERVH SQL: IPROJASSGDORDVH Type: view COMPOSITE

Maintenance and Production Orders

I_ProjectAssignedOrderVH is a Composite CDS View that provides data about "Maintenance and Production Orders" in SAP S/4HANA. It reads from 2 data sources (I_MaintenanceOrder, I_ManufacturingOrder) and exposes 2 fields with key field OrderID.

Data Sources (2)

SourceAliasJoin Type
I_MaintenanceOrder I_MaintenanceOrder from
I_ManufacturingOrder I_ManufacturingOrder union

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPROJASSGDORDVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey OrderID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Maintenance and Production Orders view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY OrderID MaintenanceOrder Order
OrderDescription ManufacturingOrderText

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 I_ProjectAssignedOrderVH.
-- 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: IPROJASSGDORDVH

CREATE VIEW I_ProjectAssignedOrderVH AS
SELECT
  MaintenanceOrder AS OrderID,
  ManufacturingOrderText AS OrderDescription
FROM I_MaintenanceOrder
-- UNION with additional select branch(es): I_ManufacturingOrder
;