I_ALLOCATIONELEMENT
Allocation Element
I_ALLOCATIONELEMENT is a CDS View in S/4HANA. Allocation Element. It contains 1 fields. 3 CDS views read from this table.
CDS Views using this table (3)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_AllocationSenderElementTP | view | from | TRANSACTIONAL | Allocation Sender Element TP |
| I_AllocRcvrFactorElementTP | view | from | TRANSACTIONAL | Allocation Receiver Factor Element TP |
| I_AllocReceiverElementTP | view | from | TRANSACTIONAL | Allocation Receiver Element TP |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | AllocationType | AllocationType | 3 |
@AbapCatalog.sqlViewName: 'ALLOCELEMENT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:#NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Allocation Element'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@VDM.viewType: #BASIC
define view I_AllocationElement
as select from t811f
association [1] to I_AllocationSegment as _Segment on $projection.AllocationType = _Segment.AllocationType
and $projection.AllocationCycle = _Segment.AllocationCycle
and $projection.AllocationCycleStartDate = _Segment.AllocationCycleStartDate
and $projection.AllocationCycleSegment = _Segment.AllocationCycleSegment
{
//tab as DatabaseTable,
key cast(tab as fco_allocation_type) as AllocationType,
key cycle as AllocationCycle,
key sdate as AllocationCycleStartDate,
key seqnr as AllocationCycleSegment,
key srflag as AllocSenderReceiverVariant,
key fpos as AllocElementSequenceNumber,
element1 as AllocationElement1,
element2 as AllocationElement2,
element3 as AllocationElement3,
element4 as AllocationElement4,
element5 as AllocationElement5,
element6 as AllocationElement6,
element7 as AllocationElement7,
element8 as AllocationElement8,
element9 as AllocationElement9,
element10 as AllocationElement10,
value as AllocationElementValue,
_Segment
}