I_AllocationTableItemRcpntGrp
Allocation Table Item Recipient Group
I_AllocationTableItemRcpntGrp is a Basic CDS View that provides data about "Allocation Table Item Recipient Group" in SAP S/4HANA. It reads from 1 data source (aufg) and exposes 8 fields with key fields AllocationTable, AllocationTableItem, AllocationTableItemRcpntGrp. It has 4 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| aufg | aufg | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_AllocationTable | _AllocationTable | $projection.AllocationTable = _AllocationTable.AllocationTable |
| [1..1] | I_AllocationTableItem | _AllocationTableItem | $projection.AllocationTable = _AllocationTableItem.AllocationTable and $projection.AllocationTableItem = _AllocationTableItem.AllocationTableItem |
| [0..*] | I_AllocationTableItemRecipient | _AllocationTableItemRecipient | $projection.AllocationTable = _AllocationTableItemRecipient.AllocationTable and $projection.AllocationTableItem = _AllocationTableItemRecipient.AllocationTableItem and $projection.AllocationTableItemRcpntGrp = _AllocationTableItemRecipient.AllocationTableItemRcpntGrp |
| [0..*] | I_ClassText | _StoreGroupDescription | $projection.StoreGroupInternalID = _StoreGroupDescription.ClassInternalID |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IALLOCTBLITRCPGR | view | |
| EndUserText.label | Allocation Table Item Recipient Group | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | AllocationTableItemRcpntGrp | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AllocationTable | abeln | ||
| KEY | AllocationTableItem | abelp | ||
| KEY | AllocationTableItemRcpntGrp | abelg | ||
| StoreGroupInternalID | figri | |||
| _StoreGroupDescription | _StoreGroupDescription | |||
| _AllocationTable | _AllocationTable | |||
| _AllocationTableItem | _AllocationTableItem | |||
| _AllocationTableItemRecipient | _AllocationTableItemRecipient |
@AbapCatalog.sqlViewName: 'IALLOCTBLITRCPGR'
@EndUserText.label: 'Allocation Table Item Recipient Group'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
representativeKey: 'AllocationTableItemRcpntGrp',
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL
}
define view I_AllocationTableItemRcpntGrp
as select from aufg
association [1..1] to I_AllocationTable as _AllocationTable on $projection.AllocationTable = _AllocationTable.AllocationTable
association [1..1] to I_AllocationTableItem as _AllocationTableItem on $projection.AllocationTable = _AllocationTableItem.AllocationTable
and $projection.AllocationTableItem = _AllocationTableItem.AllocationTableItem
association [0..*] to I_AllocationTableItemRecipient as _AllocationTableItemRecipient on $projection.AllocationTable = _AllocationTableItemRecipient.AllocationTable
and $projection.AllocationTableItem = _AllocationTableItemRecipient.AllocationTableItem
and $projection.AllocationTableItemRcpntGrp = _AllocationTableItemRecipient.AllocationTableItemRcpntGrp
association [0..*] to I_ClassText as _StoreGroupDescription on $projection.StoreGroupInternalID = _StoreGroupDescription.ClassInternalID
{
@ObjectModel.foreignKey.association: '_AllocationTable'
key abeln as AllocationTable,
@ObjectModel.foreignKey.association: '_AllocationTableItem'
key abelp as AllocationTableItem,
key abelg as AllocationTableItemRcpntGrp,
figri as StoreGroupInternalID,
@ObjectModel.text.association: '_StoreGroupDescription'
case grman
when '' then figrp
else ''
end as PlantGroup,
_StoreGroupDescription,
@ObjectModel.association.type: [#TO_COMPOSITION_ROOT]
_AllocationTable,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT]
_AllocationTableItem,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_AllocationTableItemRecipient
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"AUFG"
],
"ASSOCIATED":
[
"I_ALLOCATIONTABLE",
"I_ALLOCATIONTABLEITEM",
"I_ALLOCATIONTABLEITEMRECIPIENT",
"I_CLASSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA