I_NrOfRecipientsOfAllocTable

DDL: I_NROFRECIPIENTSOFALLOCTABLE SQL: INRRECIPALLTAB Type: view COMPOSITE Package: VDM_RFM_ALLOCATION_TABLE

Number of Recipients of Allocation Table

I_NrOfRecipientsOfAllocTable is a Composite CDS View that provides data about "Number of Recipients of Allocation Table" in SAP S/4HANA. It reads from 1 data source (I_AllocationTableItemRecipient) and exposes 3 fields with key field AllocationTable. Part of development package VDM_RFM_ALLOCATION_TABLE.

Data Sources (1)

SourceAliasJoin Type
I_AllocationTableItemRecipient I_AllocationTableItemRecipient from

Annotations (13)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName INRRECIPALLTAB view
EndUserText.label Number of Recipients of Allocation Table view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey AllocationTable view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AllocationTable AllocationTable Alloc. Table
NumberOfRecipients
_AllocationTable _AllocationTable

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_NrOfRecipientsOfAllocTable.
-- 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: INRRECIPALLTAB

CREATE VIEW I_NrOfRecipientsOfAllocTable AS
SELECT
  AllocationTable,
  count(distinct Customer) AS NumberOfRecipients
FROM I_AllocationTableItemRecipient
;