I_ATPRlvtProdPlant

DDL: I_ATPRLVTPRODPLANT Type: view_entity TRANSACTIONAL

ATP Relevant Product with Plants

I_ATPRlvtProdPlant is a Transactional CDS View that provides data about "ATP Relevant Product with Plants" in SAP S/4HANA. It reads from 2 data sources (I_ATPCheckingGroup, I_ProductPlant) and exposes 4 fields with key fields Product, Plant.

Data Sources (2)

SourceAliasJoin Type
I_ATPCheckingGroup _ATPCheckingGroup inner
I_ProductPlant _ProductPlant from

Annotations (9)

NameValueLevelField
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Feature OLY_PAC_INFO_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label ATP Relevant Product with Plants view

Fields (4)

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

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_ATPRlvtProdPlant.
-- 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_ATPRlvtProdPlant AS
SELECT
  _ProductPlant.Product AS Product,
  _ProductPlant.Plant AS Plant,
  _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 */
;