C_AllocTableStoreObjPgPurOrd

DDL: C_ALLOCTABLESTOREOBJPGPURORD SQL: CALCTBLSTOBPPURO Type: view CONSUMPTION Package: RFM_ALLOCATION_TABLE_OP

Allocation Table Store Object Page - Purchase Orders

C_AllocTableStoreObjPgPurOrd is a Consumption CDS View that provides data about "Allocation Table Store Object Page - Purchase Orders" in SAP S/4HANA. It reads from 1 data source (I_AllocTableStorePurchaseOrder) and exposes 15 fields with key fields AllocationTable, Site, PurchaseOrder. It is exposed through 1 OData service (ASQL_F0333A). Part of development package RFM_ALLOCATION_TABLE_OP.

Data Sources (1)

SourceAliasJoin Type
I_AllocTableStorePurchaseOrder I_AllocTableStorePurchaseOrder from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CALCTBLSTOBPPURO view
EndUserText.label Allocation Table Store Object Page - Purchase Orders view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey PurchaseOrder view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
UI.presentationVariant.sortOrder.by PurchaseOrder view
UI.presentationVariant.sortOrder.direction #ASC view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F0333A ASQL_F0333A C2 NOT_RELEASED

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY AllocationTable AllocationTable Alloc. Table
_AllocationTable _AllocationTable
KEY Site Site Plant
KEY PurchaseOrder PurchaseOrder Purchasing Document
_PurchaseOrder _PurchaseOrder
Supplier _PurchaseOrder Supplier Supplier
_Supplier _PurchaseOrder _Supplier
SupplierName
PurchasingOrganization _PurchaseOrder PurchasingOrganization Purchasing Organization
_PurchasingOrganization _PurchaseOrder _PurchasingOrganization
PurchasingGroup _PurchaseOrder PurchasingGroup Purchasing Group
_PurchasingGroup _PurchaseOrder _PurchasingGroup
PurchaseOrderDate _PurchaseOrder PurchaseOrderDate PO Date
PurchaseOrderType _PurchaseOrder PurchaseOrderType PO Type
_PurchaseOrderType _PurchaseOrder _PurchaseOrderType

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_AllocTableStoreObjPgPurOrd.
-- 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: CALCTBLSTOBPPURO

CREATE VIEW C_AllocTableStoreObjPgPurOrd AS
SELECT
  AllocationTable,
  Site,
  PurchaseOrder,
  _PurchaseOrder.Supplier AS Supplier,
  _PurchaseOrder._Supplier AS _Supplier,
  _PurchaseOrder._Supplier.SupplierName AS SupplierName,
  _PurchaseOrder.PurchasingOrganization AS PurchasingOrganization,
  _PurchaseOrder._PurchasingOrganization AS _PurchasingOrganization,
  _PurchaseOrder.PurchasingGroup AS PurchasingGroup,
  _PurchaseOrder._PurchasingGroup AS _PurchasingGroup,
  _PurchaseOrder.PurchaseOrderDate AS PurchaseOrderDate,
  _PurchaseOrder.PurchaseOrderType AS PurchaseOrderType,
  _PurchaseOrder._PurchaseOrderType AS _PurchaseOrderType
FROM I_AllocTableStorePurchaseOrder
;