P_OpActyNumberOfProdnHold

DDL: P_OPACTYNUMBEROFPRODNHOLD SQL: PMPEOAHOLD Type: view CONSUMPTION

P_OpActyNumberOfProdnHold is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_ProductionHoldBasic) and exposes 3 fields with key fields OpActyNtwkInstance, OpActyNtwkElement.

Data Sources (1)

SourceAliasJoin Type
I_ProductionHoldBasic I_ProductionHoldBasic from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PMPEOAHOLD view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view
VDM.private true view
AbapCatalog.compiler.compareFilter true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OpActyNtwkInstance OpActyNtwkInstance Instance ID
KEY OpActyNtwkElement OpActyNtwkElement Element Number
NumberOfHolds

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 P_OpActyNumberOfProdnHold.
-- 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: PMPEOAHOLD

CREATE VIEW P_OpActyNumberOfProdnHold AS
SELECT
  OpActyNtwkInstance,
  OpActyNtwkElement,
  count(*) AS NumberOfHolds
FROM I_ProductionHoldBasic
;