A_ATPRlvtProductMRPAreaBatch

DDL: A_ATPRLVTPRODUCTMRPAREABATCH Type: view_entity CONSUMPTION

Product Availability per Batch

A_ATPRlvtProductMRPAreaBatch is a Consumption CDS View that provides data about "Product Availability per Batch" in SAP S/4HANA. It reads from 2 data sources (I_ATPRlvtProdMRPAreaPlant, I_ATPProductPlantBatch) and exposes 3 fields with key fields Product, MRPArea, Batch.

Data Sources (2)

SourceAliasJoin Type
I_ATPRlvtProdMRPAreaPlant _ProductMRPArea from
I_ATPProductPlantBatch _ProductPlantBatch inner

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 ATPRlvtProductMRPAreaBatch_Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Product Availability per Batch view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Product I_ATPRlvtProdMRPAreaPlant Product Product Sold
KEY MRPArea I_ATPRlvtProdMRPAreaPlant MRPArea MRP Area
KEY Batch I_ATPProductPlantBatch Batch Lot No.

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_ATPRlvtProductMRPAreaBatch.
-- 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_ATPRlvtProductMRPAreaBatch AS
SELECT
  _ProductMRPArea.Product AS Product,
  _ProductMRPArea.MRPArea AS MRPArea,
  _ProductPlantBatch.Batch AS Batch
FROM I_ATPRlvtProdMRPAreaPlant AS _ProductMRPArea
INNER JOIN I_ATPProductPlantBatch AS _ProductPlantBatch ON /* join condition not captured in parsed metadata */
;