I_SchedProdnWrkCtrSqncVH

DDL: I_SCHEDPRODNWRKCTRSQNCVH SQL: ISHEDPDWCSQNCVH Type: view COMPOSITE

Work Ctr Filter for dispatch by sequence

I_SchedProdnWrkCtrSqncVH is a Composite CDS View that provides data about "Work Ctr Filter for dispatch by sequence" in SAP S/4HANA. It reads from 8 data sources and exposes 22 fields with key fields OrderID, OrderCategory, Product, Plant, ProductionVersion. It has 1 association to related views.

Data Sources (8)

SourceAliasJoin Type
I_Capacity _Capacity inner
I_Capacity _Capacity inner
I_LogisticsOrder _LogisticsOrder inner
I_PlannedOrder _PlannedOrder inner
I_ProductionVersion _prodvers from
I_ProductionVersion _prodvers union_all
I_WorkCenter _WorkCenter inner
I_WorkCenter _WorkCenter inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_WorkCenterText _WorkCenterText $projection.WorkCenterInternalID = _WorkCenterText.WorkCenterInternalID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISHEDPDWCSQNCVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Work Ctr Filter for dispatch by sequence view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY OrderID
KEY OrderCategory
KEY Product I_ProductionVersion Material Vehicle Model
KEY Plant I_ProductionVersion Plant Valuation Area
KEY ProductionVersion I_ProductionVersion ProductionVersion Version ID
WorkCenter I_ProductionVersion ProductionLine Production Line
WorkCenterInternalID I_WorkCenter WorkCenterInternalID Work Center
WorkCenterDesc
BOOExplosionDate BOOExplosionDate Explosion Date
BOMExplosionDate BOMExplosionDate BOM Expl. Date
PlndOrderPlannedStartDate
KEY OrderCategory
KEY Product I_ProductionVersion Material Vehicle Model
KEY Plant I_ProductionVersion Plant Valuation Area
KEY ProductionVersion I_ProductionVersion ProductionVersion Version ID
WorkCenter I_ProductionVersion ProductionLine Production Line
WorkCenterInternalID I_WorkCenter WorkCenterInternalID Work Center
WorkCenterDesc
BOOExplosionDate Explosion Date
BOMExplosionDate BOM Expl. Date
PlndOrderPlannedStartDate PlndOrderPlannedStartDate
PlndOrderPlannedEndDate PlndOrderPlannedEndDate

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_SchedProdnWrkCtrSqncVH.
-- 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: ISHEDPDWCSQNCVH

CREATE VIEW I_SchedProdnWrkCtrSqncVH AS
SELECT
  cast (_LogisticsOrder.OrderID as pph_cfs_ordernumber) AS OrderID,
  cast (_LogisticsOrder.OrderCategory as pph_cfs_sch_ordercategory) AS OrderCategory,
  _prodvers.Material AS Product,
  _prodvers.Plant AS Plant,
  _prodvers.ProductionVersion AS ProductionVersion,
  _prodvers.ProductionLine AS WorkCenter,
  _WorkCenter.WorkCenterInternalID AS WorkCenterInternalID,
  _WorkCenterText[1:Language=$session.system_language].WorkCenterText AS WorkCenterDesc,
  BOOExplosionDate,
  BOMExplosionDate,
  cast('00000000' as psttr ) AS PlndOrderPlannedStartDate,
  PlndOrderPlannedEndDate
FROM I_ProductionVersion AS _prodvers
INNER JOIN I_WorkCenter AS _WorkCenter ON /* join condition not captured in parsed metadata */
INNER JOIN I_Capacity AS _Capacity ON /* join condition not captured in parsed metadata */
INNER JOIN I_LogisticsOrder AS _LogisticsOrder ON /* join condition not captured in parsed metadata */
INNER JOIN I_PlannedOrder AS _PlannedOrder ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_WorkCenterText AS _WorkCenterText ON WorkCenterInternalID = _WorkCenterText.WorkCenterInternalID  -- association [0..*]
-- UNION ALL with additional select branch(es): I_ProductionVersion
;