C_ProdnVersStaging

DDL: C_PRODNVERSSTAGING SQL: CPRODNVERSSTG Type: view CONSUMPTION Package: MPE_PLAN_RTG_VERS_WF

Production Version Staging

C_ProdnVersStaging is a Consumption CDS View that provides data about "Production Version Staging" in SAP S/4HANA. It reads from 1 data source (I_ProdnVersStaging) and exposes 25 fields with key field DraftUUID. Part of development package MPE_PLAN_RTG_VERS_WF.

Data Sources (1)

SourceAliasJoin Type
I_ProdnVersStaging I_ProdnVersStaging from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CPRODNVERSSTG view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.private false view
EndUserText.label Production Version Staging view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.updateEnabled true view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY DraftUUID DraftUUID UUID
Material Material Vehicle Model
Plant Plant Valuation Area
ProductionVersion ProductionVersion Version ID
ProductionVersionText ProductionVersionText Vertikalization Text
BillOfOperationsType BillOfOperationsType Task List Type
BillOfOperationsGroup BillOfOperationsGroup Group
BillOfOperationsVariant BillOfOperationsVariant Group Counter
BillOfOperationsVersion BillOfOperationsVersion Routing Version
BillOfMaterialCategory BillOfMaterialCategory BOM category
BillOfMaterialVariantUsage BillOfMaterialVariantUsage Usage
BillOfMaterial BillOfMaterial BOM
BillOfMaterialVariant BillOfMaterialVariant AlternativeBOM
MaterialMinLotSizeQuantity MaterialMinLotSizeQuantity Min. Lot Size
MaterialMaxLotSizeQuantity MaterialMaxLotSizeQuantity To Lot Size
ValidFrom ValidFrom Vers.Valid From
ValidTo ValidTo Vers.Valid To
ProductionVersionIsLocked ProductionVersionIsLocked Prodn Version Lock
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
BillOfMaterialVersion BillOfMaterialVersion BOM Version
ProdnRtgVersBOMInternalID ProdnRtgVersBOMInternalID Allocation no.
BillOfOperationsUnit BillOfOperationsUnit Unit
IsReadOnly IsReadOnly Checkbox
_MaterialText _MaterialText

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_ProdnVersStaging.
-- 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: CPRODNVERSSTG

CREATE VIEW C_ProdnVersStaging AS
SELECT
  DraftUUID,
  Material,
  Plant,
  ProductionVersion,
  ProductionVersionText,
  BillOfOperationsType,
  BillOfOperationsGroup,
  BillOfOperationsVariant,
  BillOfOperationsVersion,
  BillOfMaterialCategory,
  BillOfMaterialVariantUsage,
  BillOfMaterial,
  BillOfMaterialVariant,
  MaterialMinLotSizeQuantity,
  MaterialMaxLotSizeQuantity,
  ValidFrom,
  ValidTo,
  ProductionVersionIsLocked,
  ValidityStartDate,
  ValidityEndDate,
  BillOfMaterialVersion,
  ProdnRtgVersBOMInternalID,
  BillOfOperationsUnit,
  IsReadOnly
FROM I_ProdnVersStaging
;