I_ATPRlvtProdPlantStorLoc

DDL: I_ATPRLVTPRODPLANTSTORLOC Type: view_entity TRANSACTIONAL

ATP Product Plant Storage Locations

I_ATPRlvtProdPlantStorLoc is a Transactional CDS View that provides data about "ATP Product Plant Storage Locations" in SAP S/4HANA. It reads from 2 data sources (I_ATPRlvtProdPlant, I_ProductStorageLocationBasic) and exposes 6 fields with key fields Product, Plant, StorageLocation.

Data Sources (2)

SourceAliasJoin Type
I_ATPRlvtProdPlant _ProductPlant from
I_ProductStorageLocationBasic _ProductPlantStorLoc inner

Annotations (8)

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
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label ATP Product Plant Storage Locations view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Product I_ATPRlvtProdPlant Product Product Sold
KEY Plant I_ProductStorageLocationBasic Plant Valuation Area
KEY StorageLocation I_ProductStorageLocationBasic StorageLocation StorageLocation
_Product I_ATPRlvtProdPlant _Product
_Plant I_ProductStorageLocationBasic _Plant
_StorageLocation I_ProductStorageLocationBasic _StorageLocation

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_ATPRlvtProdPlantStorLoc.
-- 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_ATPRlvtProdPlantStorLoc AS
SELECT
  _ProductPlant.Product AS Product,
  _ProductPlantStorLoc.Plant AS Plant,
  _ProductPlantStorLoc.StorageLocation AS StorageLocation,
  _ProductPlant._Product AS _Product,
  _ProductPlantStorLoc._Plant AS _Plant,
  _ProductPlantStorLoc._StorageLocation AS _StorageLocation
FROM I_ATPRlvtProdPlant AS _ProductPlant
INNER JOIN I_ProductStorageLocationBasic AS _ProductPlantStorLoc ON /* join condition not captured in parsed metadata */
;