C_DspDocFlwProductionAttrib

DDL: C_DSPDOCFLWPRODUCTIONATTRIB Type: view_entity CONSUMPTION Package: ODATA_GL_DSP_DOC_FLW

Production/Proc Order Attributes for DDF

C_DspDocFlwProductionAttrib is a Consumption CDS View that provides data about "Production/Proc Order Attributes for DDF" in SAP S/4HANA. It reads from 1 data source (I_LogisticsOrder) and exposes 9 fields with key field OrderID. It has 1 association to related views. Part of development package ODATA_GL_DSP_DOC_FLW.

Data Sources (1)

SourceAliasJoin Type
I_LogisticsOrder I_LogisticsOrder from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_LogisticsOrder _ProductionOrder _ProductionOrder.OrderID = $projection.OrderID

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
AccessControl.auditFilter #ENABLED view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
EndUserText.label Production/Proc Order Attributes for DDF view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY OrderID OrderID Order ID
OrderCategory OrderCategory Order Category
OrderType OrderType Order Type
Material Material Vehicle Model
Plant Plant Valuation Area
ProductionSupervisor ProductionSupervisor Prodn Supervisor
CreationDate CreationDate Time Stamp
UI5NetworkGraphDescription
_ProductionOrder _ProductionOrder

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_DspDocFlwProductionAttrib.
-- 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_DspDocFlwProductionAttrib AS
SELECT
  OrderID,
  OrderCategory,
  OrderType,
  Material,
  Plant,
  ProductionSupervisor,
  CreationDate,
  cast (OrderDescription as fac_network_graph_description) AS UI5NetworkGraphDescription
FROM I_LogisticsOrder
LEFT OUTER JOIN I_LogisticsOrder AS _ProductionOrder ON _ProductionOrder.OrderID = OrderID  -- association [1..1]
;