A_ATPRlvtProdAssgdSalesDocItem

DDL: A_ATPRLVTPRODASSGDSALESDOCITEM Type: view_entity CONSUMPTION

Product Availability per SalesDocItem

A_ATPRlvtProdAssgdSalesDocItem is a Consumption CDS View that provides data about "Product Availability per SalesDocItem" in SAP S/4HANA. It reads from 1 data source (I_ATPRlvtProdAssgdSalesDocItem) and exposes 4 fields with key fields Product, MRPArea, SalesDocument, SalesDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_ATPRlvtProdAssgdSalesDocItem I_ATPRlvtProdAssgdSalesDocItem 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 #MIXED view
OData.entityType.name ATPRlvtProdSalesDocItem_Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Product Availability per SalesDocItem view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY MRPArea MRPArea MRP Area
KEY SalesDocument SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item

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_ATPRlvtProdAssgdSalesDocItem.
-- 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_ATPRlvtProdAssgdSalesDocItem AS
SELECT
  Product,
  MRPArea,
  SalesDocument,
  SalesDocumentItem
FROM I_ATPRlvtProdAssgdSalesDocItem
;