C_ProductObjPgAllocationTable

DDL: C_PRODUCTOBJPGALLOCATIONTABLE SQL: CPRODOBJPGALCTBL Type: view CONSUMPTION

Product Object Page - Allocation Table

C_ProductObjPgAllocationTable is a Consumption CDS View that provides data about "Product Object Page - Allocation Table" in SAP S/4HANA. It reads from 1 data source (I_AllocationTableByProduct) and exposes 11 fields with key fields Product, AllocationTable. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_AllocationTableByProduct I_AllocationTableByProduct from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_ProductObjPg _ProductObjPg $projection.Product = _ProductObjPg.Product

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CPRODOBJPGALCTBL view
EndUserText.label Product Object Page - Allocation Table view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Consumption.semanticObject AllocationTable view
UI.presentationVariant.sortOrder.by DeliveryDate view
UI.presentationVariant.sortOrder.direction #DESC view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY AllocationTable AllocationTable Alloc. Table
AllocationTableDescription _AllocationTable AllocationTableDescription
AllocTableActivityStatus _AllocationTable AllocTableActivityStatus
MaintenanceStatus _AllocationTable MaintenanceStatus Maint. status
DeliveryDate
AllocationTableType _AllocationTable AllocationTableType
_ProductObjPg _ProductObjPg
_AllocTableActivityStatus _AllocationTable _AllocTableActivityStatus
_AllocTableMaintenanceStatus _AllocationTable _AllocTableMaintenanceStatus
_AllocationTableType _AllocationTable _AllocationTableType

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 C_ProductObjPgAllocationTable.
-- 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: CPRODOBJPGALCTBL

CREATE VIEW C_ProductObjPgAllocationTable AS
SELECT
  Product,
  AllocationTable,
  _AllocationTable.AllocationTableDescription AS AllocationTableDescription,
  _AllocationTable.AllocTableActivityStatus AS AllocTableActivityStatus,
  _AllocationTable.MaintenanceStatus AS MaintenanceStatus,
  _AllocationTable._DefaultDeliveryPhase.DeliveryDate AS DeliveryDate,
  _AllocationTable.AllocationTableType AS AllocationTableType,
  _AllocationTable._AllocTableActivityStatus AS _AllocTableActivityStatus,
  _AllocationTable._AllocTableMaintenanceStatus AS _AllocTableMaintenanceStatus,
  _AllocationTable._AllocationTableType AS _AllocationTableType
FROM I_AllocationTableByProduct
LEFT OUTER JOIN C_ProductObjPg AS _ProductObjPg ON Product = _ProductObjPg.Product  -- association [1..1]
;