A_ATPRlvtProductStorLoc

DDL: A_ATPRLVTPRODUCTSTORLOC Type: view_entity CONSUMPTION

Product Availability per StorLoc

A_ATPRlvtProductStorLoc is a Consumption CDS View that provides data about "Product Availability per StorLoc" in SAP S/4HANA. It reads from 1 data source (I_ATPRlvtProductStorLoc) and exposes 3 fields with key fields Product, StorageLocation, MRPArea.

Data Sources (1)

SourceAliasJoin Type
I_ATPRlvtProductStorLoc _ProductStorLoc 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 #MASTER view
OData.entityType.name ATPRlvtProductStorLoc_Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Product Availability per StorLoc view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Product I_ATPRlvtProductStorLoc Product Product Sold
KEY StorageLocation I_ATPRlvtProductStorLoc StorageLocation StorageLocation
KEY MRPArea I_ATPRlvtProductStorLoc MRPArea MRP 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_ATPRlvtProductStorLoc.
-- 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_ATPRlvtProductStorLoc AS
SELECT
  _ProductStorLoc.Product AS Product,
  _ProductStorLoc.StorageLocation AS StorageLocation,
  _ProductStorLoc.MRPArea AS MRPArea
FROM I_ATPRlvtProductStorLoc AS _ProductStorLoc
;