Deprecated
This CDS view is deprecated in S/4HANA. Use I_ABOPRunPrtRsFigsByProdPlnt_2 instead. View all deprecated CDS views →

I_ABOPRunPrtRsltFigsByProdPlnt

DDL: I_ABOPRUNPRTRSLTFIGSBYPRODPLNT SQL: IABOPRPRSFIGBPP Type: view COMPOSITE

BOP Run Part Result Figures By Product Plant-Combination

I_ABOPRunPrtRsltFigsByProdPlnt is a Composite CDS View that provides data about "BOP Run Part Result Figures By Product Plant-Combination" in SAP S/4HANA. It reads from 1 data source (P_ABOPRunRqmtAggregation) and exposes 21 fields with key fields ABOPRunPartUUID, Material, Plant.

Data Sources (1)

SourceAliasJoin Type
P_ABOPRunRqmtAggregation P_ABOPRunRqmtAggregation from

Parameters (1)

NameTypeDefault
P_ExcldRqmtsAreIncldInRsltFigs boole_d

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IABOPRPRSFIGBPP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label BOP Run Part Result Figures By Product Plant-Combination view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ABOPRunPrtRsFigsByProdPlnt_2 view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY ABOPRunPartUUID ABOPRunPartUUID Check Iteration UUID
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
NumberOfRequirements
NumberOfProcessedRequirements
NumberOfLockedRequirements
NumberOfExcludedRequirements
NumberOfRequirementsWithIssues
NumberOfSupAssgmtRelevantRqmts
NumberOfRqmtsIncldInConfFigs
NumberOfRqmtsIncldInAssgmtFigs
NmbrOfConfdRqmtsOnTimeBfrRun
NmbrOfConfdRqmtsOnTimeAfterRun
NmbrOfSupAssgdRqmtsOnTmeBfrRun
NmbrOfSupAssgdRqmtsOnTmeAftRun
NmbrOfConfdRqmtsBeforeRun
NmbrOfConfdRqmtsAfterRun
NmbrOfSupAssgdRqmtsBeforeRun
NmbrOfSupAssgdRqmtsAfterRun
NmbrOfRqmtsSentToOrderUpdate
NmbrOfRqmtsWithOrderUpdtIssues

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_ABOPRunPrtRsltFigsByProdPlnt.
-- 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: IABOPRPRSFIGBPP
-- Parameters: P_ExcldRqmtsAreIncldInRsltFigs : boole_d

CREATE VIEW I_ABOPRunPrtRsltFigsByProdPlnt AS
SELECT
  ABOPRunPartUUID,
  Material,
  Plant,
  count(*) AS NumberOfRequirements,
  sum(RqmtIsProcessed) AS NumberOfProcessedRequirements,
  sum(RqmtIsLocked) AS NumberOfLockedRequirements,
  sum(RqmtIsExcluded) AS NumberOfExcludedRequirements,
  sum(RqmtIsWithIssues) AS NumberOfRequirementsWithIssues,
  sum(RqmtIsSupAssgmtRelevant) AS NumberOfSupAssgmtRelevantRqmts,
  sum(RqmtIsIncldInConfirmationFigs) AS NumberOfRqmtsIncldInConfFigs,
  sum(RqmtIsIncldInSupAssignmentFigs) AS NumberOfRqmtsIncldInAssgmtFigs,
  sum(RqmtIsFullyConfdOnTimeBfrRun) AS NmbrOfConfdRqmtsOnTimeBfrRun,
  sum(RqmtIsFullyConfdOnTimeAfterRun) AS NmbrOfConfdRqmtsOnTimeAfterRun,
  sum(RqmtIsFullyAssgdOnTimeBfrRun) AS NmbrOfSupAssgdRqmtsOnTmeBfrRun,
  sum(RqmtIsFullyAssgdOnTimeAftRun) AS NmbrOfSupAssgdRqmtsOnTmeAftRun,
  sum(RqmtIsFullyConfdBeforeRun) AS NmbrOfConfdRqmtsBeforeRun,
  sum(RqmtIsFullyConfdAfterRun) AS NmbrOfConfdRqmtsAfterRun,
  sum(RqmtIsFullyAssignedBeforeRun) AS NmbrOfSupAssgdRqmtsBeforeRun,
  sum(RqmtIsFullyAssignedAfterRun) AS NmbrOfSupAssgdRqmtsAfterRun,
  sum(RqmtWasSentToOrderUpdate) AS NmbrOfRqmtsSentToOrderUpdate,
  sum(RqmtWithOrderUpdateIssues) AS NmbrOfRqmtsWithOrderUpdtIssues
FROM P_ABOPRunRqmtAggregation
;