C_ProdnRtgVersWrkflwInboxTP

DDL: C_PRODNRTGVERSWRKFLWINBOXTP SQL: CPRODRTGVWFINBOX Type: view CONSUMPTION Package: MPE_PLAN_RTG_VERS_WF

Production Routing Workflow MyInbox

C_ProdnRtgVersWrkflwInboxTP is a Consumption CDS View that provides data about "Production Routing Workflow MyInbox" in SAP S/4HANA. It reads from 1 data source (I_ProdnRtgVersWrkflwInboxTP) and exposes 25 fields with key field BillOfOperationsKey. It has 1 association to related views. Part of development package MPE_PLAN_RTG_VERS_WF.

Data Sources (1)

SourceAliasJoin Type
I_ProdnRtgVersWrkflwInboxTP I_ProdnRtgVersWrkflwInboxTP from

Associations (1)

CardinalityTargetAliasCondition
[0..*] C_ProdnVersStaging _ProdnVersStaging $projection.BillOfOperationsGroup = _ProdnVersStaging.BillOfOperationsGroup and $projection.BillOfOperationsVersion = _ProdnVersStaging.BillOfOperationsVersion and $projection.BillOfOperationsType = _ProdnVersStaging.BillOfOperationsType and $projection.BillOfOperationsVariant = _ProdnVersStaging.BillOfOperationsVariant

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPRODRTGVWFINBOX view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Production Routing Workflow MyInbox view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.compositionRoot true view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsKey BillOfOperationsKey
BillOfOperations BillOfOperations
BillOfOperationsGroup BillOfOperationsGroup Group
BillOfOperationsVersion BillOfOperationsVersion Routing Version
BillOfOperationsVariant BillOfOperationsVariant Group Counter
BillOfOperationsType BillOfOperationsType Task List Type
BillOfOperationsSubtype BillOfOperationsSubtype
BillOfOperationsStatus BillOfOperationsStatus
BillOfOperationsUsage BillOfOperationsUsage
BillOfOperationsDesc BillOfOperationsDesc
BillOfOperationsVersionStatus BillOfOperationsVersionStatus
Plant Plant Valuation Area
MinimumLotSizeQuantity MinimumLotSizeQuantity Min. Lot Size
MaximumLotSizeQuantity MaximumLotSizeQuantity Max. Lot Size
BillOfOperationsUnit BillOfOperationsUnit
RoutingIsReworkRouting RoutingIsReworkRouting
ProdnProcgIsFlexible ProdnProcgIsFlexible
CreationDateTime CreationDateTime Timestamp
CreatedByUser CreatedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
HasProductionVersion
BOOWorkflowIsLastStep
_BOOVersionStatusText _BOOVersionStatusText
_ProdnVersStaging _ProdnVersStaging

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_ProdnRtgVersWrkflwInboxTP.
-- 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: CPRODRTGVWFINBOX

CREATE VIEW C_ProdnRtgVersWrkflwInboxTP AS
SELECT
  BillOfOperationsKey,
  BillOfOperations,
  BillOfOperationsGroup,
  BillOfOperationsVersion,
  BillOfOperationsVariant,
  BillOfOperationsType,
  BillOfOperationsSubtype,
  BillOfOperationsStatus,
  BillOfOperationsUsage,
  BillOfOperationsDesc,
  BillOfOperationsVersionStatus,
  Plant,
  MinimumLotSizeQuantity,
  MaximumLotSizeQuantity,
  BillOfOperationsUnit,
  RoutingIsReworkRouting,
  ProdnProcgIsFlexible,
  CreationDateTime,
  CreatedByUser,
  LastChangeDateTime,
  LastChangedByUser,
  cast('' as flag) AS HasProductionVersion,
  cast('' as flag) AS BOOWorkflowIsLastStep
FROM I_ProdnRtgVersWrkflwInboxTP
LEFT OUTER JOIN C_ProdnVersStaging AS _ProdnVersStaging ON BillOfOperationsGroup = _ProdnVersStaging.BillOfOperationsGroup AND BillOfOperationsVersion = _ProdnVersStaging.BillOfOperationsVersion AND BillOfOperationsType = _ProdnVersStaging.BillOfOperationsType AND BillOfOperationsVariant = _ProdnVersStaging.BillOfOperationsVariant  -- association [0..*]
;