P_ABOPSelectedBasicRqmt_2

DDL: P_ABOPSELECTEDBASICRQMT_2 Type: view_entity COMPOSITE

P_ABOPSelectedBasicRqmt_2 is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (R_ATPSelectedBasicRequirement) and exposes 27 fields with key field ATPRequirementUUID.

Data Sources (1)

SourceAliasJoin Type
R_ATPSelectedBasicRequirement R_ATPSelectedBasicRequirement from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY ATPRequirementUUID ATPRequirementUUID Requirement UUID
ATPCheckIterationUUID ATPCheckIterationUUID Check Iteration UUID
ATPCheckUUID ATPCheckUUID Check ID
ATPRelevantDocument ATPRelevantDocument MRP element number
ATPRelevantDocumentItem ATPRelevantDocumentItem MRP elemnt item
ATPRelevantDocScheduleLine ATPRelevantDocScheduleLine Scheduling
ATPRelevantDocumentCategory ATPRelevantDocumentCategory ATP: Category of Stock / Receipts / Issues
Product Product Product Sold
SupplyingPlant SupplyingPlant Supplying Plant
SupplyingStorageLocation SupplyingStorageLocation Location
Batch Batch Lot No.
AssgdABOPConfirmationStrategy AssgdABOPConfirmationStrategy Confirmation Strategy
MatchingABOPSegmentUUID MatchingABOPSegmentUUID BOP Segment UUID
RequestedQuantityInBaseUnit RequestedQuantityInBaseUnit Requested Qty
ReqdProdAvailabilityUTCDateTme ReqdProdAvailabilityUTCDateTme Req. Mat. Avail. Dte
ReqdProdAvailabilityTimeZone ReqdProdAvailabilityTimeZone Time Zone
BaseUnit Unit of Measure
BaseToCommonBaseQtyNumerator BaseToCommonBaseQtyNumerator Numerator
BaseToCommonBaseQtyDenominator BaseToCommonBaseQtyDenominator Denominator
ChosenATPConfCompositionUUID _ProcessedRequirement ChosenATPConfCompositionUUID Conf. Composition
ATPProcessingExclusionReason _ExcludedRequirement ATPProcessingExclusionReason
ATPRqmtProcessingSqncPosition _ProcessedRequirement ProcessingSequencePosition
_Check _Check
_SelectionDetnEvaluation _SelectionDetnEvaluation
_SupplyingPlant _SupplyingPlant
_SupplyingStorageLocation _SupplyingStorageLocation
_BaseUnit _BaseUnit

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_ABOPSelectedBasicRqmt_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 P_ABOPSelectedBasicRqmt_2 AS
SELECT
  ATPRequirementUUID,
  ATPCheckIterationUUID,
  ATPCheckUUID,
  ATPRelevantDocument,
  ATPRelevantDocumentItem,
  ATPRelevantDocScheduleLine,
  ATPRelevantDocumentCategory,
  Product,
  SupplyingPlant,
  SupplyingStorageLocation,
  Batch,
  AssgdABOPConfirmationStrategy,
  MatchingABOPSegmentUUID,
  RequestedQuantityInBaseUnit,
  ReqdProdAvailabilityUTCDateTme,
  ReqdProdAvailabilityTimeZone,
  cast(BaseUnit as meins preserving type) AS BaseUnit,
  BaseToCommonBaseQtyNumerator,
  BaseToCommonBaseQtyDenominator,
  _ProcessedRequirement.ChosenATPConfCompositionUUID AS ChosenATPConfCompositionUUID,
  _ExcludedRequirement.ATPProcessingExclusionReason AS ATPProcessingExclusionReason,
  _ProcessedRequirement.ProcessingSequencePosition AS ATPRqmtProcessingSqncPosition
FROM R_ATPSelectedBasicRequirement
;