C_AllocationTableObjPgSupplier

DDL: C_ALLOCATIONTABLEOBJPGSUPPLIER SQL: CALCTBLOBJPGSPLR Type: view CONSUMPTION Package: RFM_ALLOCATION_TABLE_OP

Allocation Table Object Page - Suppliers

C_AllocationTableObjPgSupplier is a Consumption CDS View that provides data about "Allocation Table Object Page - Suppliers" in SAP S/4HANA. It reads from 1 data source (I_AllocationTableSupplier) and exposes 12 fields with key fields AllocationTable, Supplier. It is exposed through 1 OData service (ASQL_F0333A). Part of development package RFM_ALLOCATION_TABLE_OP.

Data Sources (1)

SourceAliasJoin Type
I_AllocationTableSupplier I_AllocationTableSupplier from

Annotations (12)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName CALCTBLOBJPGSPLR view
EndUserText.label Allocation Table Object Page - Suppliers view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey Supplier view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F0333A ASQL_F0333A C2 NOT_RELEASED

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY AllocationTable AllocationTable Alloc. Table
KEY Supplier Supplier Supplier
SupplierName _Supplier SupplierName Supplier Name
Region
PostalCode
CityName
Countryasformatted_streetasStreetName
Country
_AllocationTable _AllocationTable
_Supplier _Supplier
_Country
_Region

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_AllocationTableObjPgSupplier.
-- 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: CALCTBLOBJPGSPLR

CREATE VIEW C_AllocationTableObjPgSupplier AS
SELECT
  AllocationTable,
  Supplier,
  _Supplier.SupplierName AS SupplierName,
  _Supplier._StandardAddress.Region AS Region,
  _Supplier._StandardAddress.PostalCode AS PostalCode,
  _Supplier._StandardAddress.CityName AS CityName,
  cast( concat(_Supplier._StandardAddress.StreetName, concat(';;', concat(_Supplier._StandardAddress.HouseNumber, concat(';;', _Supplier._StandardAddress.Country )))) as formatted_street ) as StreetName AS Countryasformatted_streetasStreetName,
  _Supplier._StandardAddress.Country AS Country,
  _Supplier._StandardAddress._Country AS _Country,
  _Supplier._StandardAddress._Region AS _Region
FROM I_AllocationTableSupplier
;