I_AllocTableItemSuplgDistrCtr

DDL: I_ALLOCTABLEITEMSUPLGDISTRCTR SQL: IALLOCTBLITMSUDC Type: view BASIC

Alloc. Table Item Supplying Distr. Ctr.

I_AllocTableItemSuplgDistrCtr is a Basic CDS View that provides data about "Alloc. Table Item Supplying Distr. Ctr." in SAP S/4HANA. It reads from 1 data source (auvz) and exposes 14 fields with key fields AllocationTable, AllocationTableItem, DistributionCenter. It has 6 associations to related views.

Data Sources (1)

SourceAliasJoin Type
auvz auvz from

Associations (6)

CardinalityTargetAliasCondition
[1..1] I_AllocationTable _AllocationTable $projection.AllocationTable = _AllocationTable.AllocationTable
[1..1] I_AllocationTableItem _AllocationTableItem $projection.AllocationTable = _AllocationTableItem.AllocationTable and $projection.AllocationTableItem = _AllocationTableItem.AllocationTableItem
[1..1] I_Site _DistributionCenter $projection.DistributionCenter = _DistributionCenter.Site
[0..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier
[0..1] I_UnitOfMeasure _QuantityUnit $projection.QuantityUnit = _QuantityUnit.UnitOfMeasure
[0..1] I_AllocTableItemProcgMethod _ProcessingMethod $projection.DistributionProcessingMethod = _ProcessingMethod.DistributionProcessingMethod

Annotations (13)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IALLOCTBLITMSUDC view
EndUserText.label Alloc. Table Item Supplying Distr. Ctr. view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.representativeKey DistributionCenter view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY AllocationTable abeln Alloc. Table
KEY AllocationTableItem abelp Item
KEY DistributionCenter vzwrk Distr. Center
Supplier lifnr Vendor no.
PlannedQuantity pmngv Plan Quantity
ConfirmedQuantity imngv Confirmed Qty
QuantityUnit aufme Unit of Measure
DistributionProcessingMethod waflu_vz Method
_AllocationTable _AllocationTable
_AllocationTableItem _AllocationTableItem
_DistributionCenter _DistributionCenter
_Supplier _Supplier
_QuantityUnit _QuantityUnit
_ProcessingMethod _ProcessingMethod

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_AllocTableItemSuplgDistrCtr.
-- 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.
-- SQL view name: IALLOCTBLITMSUDC

CREATE VIEW I_AllocTableItemSuplgDistrCtr AS
SELECT
  abeln AS AllocationTable,
  abelp AS AllocationTableItem,
  vzwrk AS DistributionCenter,
  lifnr AS Supplier,
  pmngv AS PlannedQuantity,
  imngv AS ConfirmedQuantity,
  aufme AS QuantityUnit,
  waflu_vz AS DistributionProcessingMethod
FROM auvz
LEFT OUTER JOIN I_AllocationTable AS _AllocationTable ON AllocationTable = _AllocationTable.AllocationTable  -- association [1..1]
LEFT OUTER JOIN I_AllocationTableItem AS _AllocationTableItem ON AllocationTable = _AllocationTableItem.AllocationTable AND AllocationTableItem = _AllocationTableItem.AllocationTableItem  -- association [1..1]
LEFT OUTER JOIN I_Site AS _DistributionCenter ON DistributionCenter = _DistributionCenter.Site  -- association [1..1]
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [0..1]
LEFT OUTER JOIN I_UnitOfMeasure AS _QuantityUnit ON QuantityUnit = _QuantityUnit.UnitOfMeasure  -- association [0..1]
LEFT OUTER JOIN I_AllocTableItemProcgMethod AS _ProcessingMethod ON DistributionProcessingMethod = _ProcessingMethod.DistributionProcessingMethod  -- association [0..1]
;