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

C_ABOPRunPartAllResultFigures

DDL: C_ABOPRUNPARTALLRESULTFIGURES SQL: CABOPRUNPTARSFIG Type: view CONSUMPTION

BOP Run Part Result Figs With Also Excld Requirements

C_ABOPRunPartAllResultFigures is a Consumption CDS View that provides data about "BOP Run Part Result Figs With Also Excld Requirements" in SAP S/4HANA. It reads from 1 data source (I_ABOPRunPartResultFigures) and exposes 20 fields with key field ABOPRunPartUUID.

Data Sources (1)

SourceAliasJoin Type
I_ABOPRunPartResultFigures I_ABOPRunPartResultFigures from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CABOPRUNPTARSFIG 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 #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label BOP Run Part Result Figs With Also Excld Requirements view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor NONE view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY ABOPRunPartUUID ABOPRunPartUUID
NumberOfRequirements NumberOfRequirements
NumberOfProcessedRequirements NumberOfProcessedRequirements
NumberOfLockedRequirements NumberOfLockedRequirements
NumberOfExcludedRequirements NumberOfExcludedRequirements
NumberOfRequirementsWithIssues NumberOfRequirementsWithIssues
NumberOfSupAssgmtRelevantRqmts NumberOfSupAssgmtRelevantRqmts
NumberOfRqmtsIncldInConfFigs NumberOfRqmtsIncldInConfFigs
NumberOfRqmtsIncldInAssgmtFigs NumberOfRqmtsIncldInAssgmtFigs
NumberOfRqmtsWithConfIssues
NmbrOfConfdRqmtsOnTimeBfrRun NmbrOfConfdRqmtsOnTimeBfrRun
NmbrOfConfdRqmtsOnTimeAfterRun NmbrOfConfdRqmtsOnTimeAfterRun
NmbrOfSupAssgdRqmtsOnTmeBfrRun NmbrOfSupAssgdRqmtsOnTmeBfrRun
NmbrOfSupAssgdRqmtsOnTmeAftRun NmbrOfSupAssgdRqmtsOnTmeAftRun
NmbrOfConfdRqmtsBeforeRun NmbrOfConfdRqmtsBeforeRun
NmbrOfConfdRqmtsAfterRun NmbrOfConfdRqmtsAfterRun
NmbrOfSupAssgdRqmtsBeforeRun NmbrOfSupAssgdRqmtsBeforeRun
NmbrOfSupAssgdRqmtsAfterRun NmbrOfSupAssgdRqmtsAfterRun
NmbrOfRqmtsSentToOrderUpdate NmbrOfRqmtsSentToOrderUpdate
NmbrOfRqmtsWithOrderUpdtIssues 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 C_ABOPRunPartAllResultFigures.
-- 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: CABOPRUNPTARSFIG

CREATE VIEW C_ABOPRunPartAllResultFigures AS
SELECT
  ABOPRunPartUUID,
  NumberOfRequirements,
  NumberOfProcessedRequirements,
  NumberOfLockedRequirements,
  NumberOfExcludedRequirements,
  NumberOfRequirementsWithIssues,
  NumberOfSupAssgmtRelevantRqmts,
  NumberOfRqmtsIncldInConfFigs,
  NumberOfRqmtsIncldInAssgmtFigs,
  NumberOfRequirements - NmbrOfConfdRqmtsOnTimeAfterRun AS NumberOfRqmtsWithConfIssues,
  NmbrOfConfdRqmtsOnTimeBfrRun,
  NmbrOfConfdRqmtsOnTimeAfterRun,
  NmbrOfSupAssgdRqmtsOnTmeBfrRun,
  NmbrOfSupAssgdRqmtsOnTmeAftRun,
  NmbrOfConfdRqmtsBeforeRun,
  NmbrOfConfdRqmtsAfterRun,
  NmbrOfSupAssgdRqmtsBeforeRun,
  NmbrOfSupAssgdRqmtsAfterRun,
  NmbrOfRqmtsSentToOrderUpdate,
  NmbrOfRqmtsWithOrderUpdtIssues
FROM I_ABOPRunPartResultFigures
;