I_ABOPRunSoldToParty_2

DDL: I_ABOPRUNSOLDTOPARTY_2 Type: view_entity COMPOSITE

Run Confirmation Details by SoldToParty

I_ABOPRunSoldToParty_2 is a Composite CDS View that provides data about "Run Confirmation Details by SoldToParty" in SAP S/4HANA. It reads from 1 data source (I_ABOPRunRsltFigsByRcpnt_2) and exposes 22 fields with key fields ABOPRunUUID, Recipient. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ABOPRunRsltFigsByRcpnt_2 I_ABOPRunRsltFigsByRcpnt_2 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Customer _Customer $projection.Recipient = _Customer.Customer
[0..1] I_Plant _Plant $projection.Recipient = _Plant.Plant

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Run Confirmation Details by SoldToParty view
Metadata.ignorePropagatedAnnotations false view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view
Search.searchable true view
ObjectModel.sapObjectNodeType.name ABOPRunResultBySoldToParty view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY ABOPRunUUID ABOPRunPartUUID
KEY Recipient Recipient To
ABOPVariantUUID _ABOPRun ABOPVariantUUID BOP Variant UUID
PlantNameendasRecipientText
ATPCheckHasOnlyHeader _ABOPRun ATPCheckHasOnlyHeader Only Header Logged
NumberOfRqmtsIncldInConfFigs NumberOfRqmtsIncldInConfFigs
NumberOfRqmtsIncldInAssgmtFigs NumberOfRqmtsIncldInAssgmtFigs
BaseUnit BaseUnit Unit of Measure
OnTimeConfdRqmtsBeforeRunPct OnTimeConfdRqmtsBeforeRunPct
OnTimeConfdRqmtsAfterRunPct OnTimeConfdRqmtsAfterRunPct
ConfdRqmtsBeforeRunPercent ConfdRqmtsBeforeRunPercent
ConfdRqmtsAfterRunPercent ConfdRqmtsAfterRunPercent
SupAssgdRqmtsBeforeRunPercent SupAssgdRqmtsBeforeRunPercent
SupAssgdRqmtsAfterRunPercent SupAssgdRqmtsAfterRunPercent
ABOPExecutionMode _ABOPRun ABOPExecutionMode
ABOPExecutionModeText _ABOPRun ABOPExecutionModeText
NmbrOfRqmtsWithOrderUpdtIssues _ABOPRun NmbrOfRqmtsWithOrderUpdtIssues
NumberOfRequirementsWithIssues NumberOfRequirementsWithIssues
NumberOfRequirements NumberOfRequirements
NumberOfProcessedRequirements NumberOfProcessedRequirements
NmbrOfSuccessfullyUpdatedRqmts NmbrOfSuccessfullyUpdatedRqmts
_ABOPRun _ABOPRun

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_ABOPRunSoldToParty_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_ABOPRunSoldToParty_2 AS
SELECT
  ABOPRunPartUUID AS ABOPRunUUID,
  Recipient,
  _ABOPRun.ABOPVariantUUID AS ABOPVariantUUID,
  case when _Customer.CustomerName is not null then _Customer.CustomerName else _Plant.PlantName end as RecipientText AS PlantNameendasRecipientText,
  _ABOPRun.ATPCheckHasOnlyHeader AS ATPCheckHasOnlyHeader,
  NumberOfRqmtsIncldInConfFigs,
  NumberOfRqmtsIncldInAssgmtFigs,
  BaseUnit,
  OnTimeConfdRqmtsBeforeRunPct,
  OnTimeConfdRqmtsAfterRunPct,
  ConfdRqmtsBeforeRunPercent,
  ConfdRqmtsAfterRunPercent,
  SupAssgdRqmtsBeforeRunPercent,
  SupAssgdRqmtsAfterRunPercent,
  _ABOPRun.ABOPExecutionMode AS ABOPExecutionMode,
  _ABOPRun.ABOPExecutionModeText AS ABOPExecutionModeText,
  _ABOPRun.NmbrOfRqmtsWithOrderUpdtIssues AS NmbrOfRqmtsWithOrderUpdtIssues,
  NumberOfRequirementsWithIssues,
  NumberOfRequirements,
  NumberOfProcessedRequirements,
  NmbrOfSuccessfullyUpdatedRqmts
FROM I_ABOPRunRsltFigsByRcpnt_2
LEFT OUTER JOIN I_Customer AS _Customer ON Recipient = _Customer.Customer  -- association [0..1]
LEFT OUTER JOIN I_Plant AS _Plant ON Recipient = _Plant.Plant  -- association [0..1]
;