A_ATPChkRlvtProductPlant

DDL: A_ATPCHKRLVTPRODUCTPLANT Type: view_entity CONSUMPTION

ATP Check Data Definition

A_ATPChkRlvtProductPlant is a Consumption CDS View that provides data about "ATP Check Data Definition" in SAP S/4HANA. It reads from 2 data sources (I_ATPCheckingGroup, I_ProductPlant) and exposes 2 fields with key fields Product, Plant.

Data Sources (2)

SourceAliasJoin Type
I_ATPCheckingGroup _ATPCheckingGroup inner
I_ProductPlant _ProductPlant from

Annotations (9)

NameValueLevelField
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
OData.entityType.name ATPChkRlvtProductPlant_Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label ATP Check Data Definition view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Product I_ProductPlant Product Product Sold
KEY Plant I_ProductPlant Plant Valuation Area

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 A_ATPChkRlvtProductPlant.
-- 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 A_ATPChkRlvtProductPlant AS
SELECT
  _ProductPlant.Product AS Product,
  _ProductPlant.Plant AS Plant
FROM I_ProductPlant AS _ProductPlant
INNER JOIN I_ATPCheckingGroup AS _ATPCheckingGroup ON /* join condition not captured in parsed metadata */
;