I_ProdPlantWorkSchedulingTP_2

DDL: I_PRODPLANTWORKSCHEDULINGTP_2 Type: view_entity TRANSACTIONAL

Product Plant Work Scheduling - TP

I_ProdPlantWorkSchedulingTP_2 is a Transactional CDS View that provides data about "Product Plant Work Scheduling - TP" in SAP S/4HANA. It reads from 1 data source (R_ProdPlantWorkSchedulingTP) and exposes 20 fields with key fields Product, Plant.

SAP Help Documentation

CategoryCDS Views for Product Master
Purpose
This CDS view is for transactional processing with business object Product ( I_ProductTP_2 ). For read scenario, kindly use the CDS view Product Work Scheduling Core Entity . To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

View on SAP Help Portal →

Data Sources (1)

SourceAliasJoin Type
R_ProdPlantWorkSchedulingTP R_ProdPlantWorkSchedulingTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Product Plant Work Scheduling - TP view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
Metadata.ignorePropagatedAnnotations true view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY Plant Plant Valuation Area
ProductBaseQuantity ProductBaseQuantity Base quantity
UnlimitedOverDelivIsAllowed UnlimitedOverDelivIsAllowed Unlimited
OverDeliveryTolerancePercent OverDeliveryTolerancePercent Overdely tol.
UnderDeliveryTolerancePercent UnderDeliveryTolerancePercent Underdely tol.
ProductionInvtryManagedLoc ProductionInvtryManagedLoc Storage Location
ProductionOrderBatchCode ProductionOrderBatchCode
ProdIsWithdrawnFrmProdnBin ProdIsWithdrawnFrmProdnBin
TransitionMatrixProductsGroup TransitionMatrixProductsGroup
OrderChangeManagementProfile OrderChangeManagementProfile
ProductComponentBackflushCode ProductComponentBackflushCode Backflush
SetupAndTeardownTime SetupAndTeardownTime
ProductionSchedulingProfile ProductionSchedulingProfile Production Scheduling Profile
TransitionTime TransitionTime
ProcessingTimeInDays ProcessingTimeInDays
ProductionSupervisor ProductionSupervisor Prodn Supervisor
ProductProductionQuantityUnit ProductProductionQuantityUnit
BaseUnit BaseUnit Unit of Measure
_ProductredirectedtoI_ProductTP_2

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_ProdPlantWorkSchedulingTP_2.
-- 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 I_ProdPlantWorkSchedulingTP_2 AS
SELECT
  Product,
  Plant,
  ProductBaseQuantity,
  UnlimitedOverDelivIsAllowed,
  OverDeliveryTolerancePercent,
  UnderDeliveryTolerancePercent,
  ProductionInvtryManagedLoc,
  ProductionOrderBatchCode,
  ProdIsWithdrawnFrmProdnBin,
  TransitionMatrixProductsGroup,
  OrderChangeManagementProfile,
  ProductComponentBackflushCode,
  SetupAndTeardownTime,
  ProductionSchedulingProfile,
  TransitionTime,
  ProcessingTimeInDays,
  ProductionSupervisor,
  ProductProductionQuantityUnit,
  BaseUnit
FROM R_ProdPlantWorkSchedulingTP
;