A_ProductionRoutingUsage

DDL: A_PRODUCTIONROUTINGUSAGE Type: view_entity COMPOSITE

Usage

A_ProductionRoutingUsage is a Composite CDS View that provides data about "Usage" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperationsUsage) and exposes 3 fields with key field BillOfOperationsUsage. It has 1 association to related views. It is exposed through 1 OData service (API_PRODUCTIONROUTING).

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperationsUsage I_BillOfOperationsUsage from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_ProductionRoutingUsageText _Text $projection.BillOfOperationsUsage = _Text.BillOfOperationsUsage

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Usage view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name ProductionRoutingUsage_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_PRODUCTIONROUTING API_PRODUCTION_ROUTING V2 C2 C1

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsUsage BillOfOperationsUsage
BillOfOperationsUsageDesc
_Text _Text

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_ProductionRoutingUsage.
-- 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_ProductionRoutingUsage AS
SELECT
  BillOfOperationsUsage,
  _Text[1:Language=$session.system_language].BillOfOperationsUsageDesc AS BillOfOperationsUsageDesc
FROM I_BillOfOperationsUsage
LEFT OUTER JOIN A_ProductionRoutingUsageText AS _Text ON BillOfOperationsUsage = _Text.BillOfOperationsUsage  -- association [0..*]
;