I_ALLOCATIONSEGMENTNOTETP
Allocation segment note
I_ALLOCATIONSEGMENTNOTETP is a CDS View in S/4HANA. Allocation segment note. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_AllocationSegmentNoteTP | view | from | CONSUMPTION | Allocation segment note |
| P_AllocationSegmentNote | view | from | CONSUMPTION | Allocation Segment Note |
@AbapCatalog.sqlViewName: 'ALLOSEGNTTP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:#NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Allocation segment note'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@VDM.viewType: #TRANSACTIONAL
@ObjectModel:
{
transactionalProcessingEnabled:true,
writeDraftPersistence: 'ALLOSEGCYCTPD',
semanticKey: ['AllocationType', 'AllocationCycle', 'AllocationCycleStartDate', 'AllocationCycleSegment'],
createEnabled: true,
updateEnabled: true,
deleteEnabled: true
}
define view I_AllocationSegmentNoteTP
as select from I_AllocationSegmentNote
association [1..1] to I_AllocationSegmentTP as _Segment on $projection.AllocationType = _Segment.AllocationType
and $projection.AllocationCycle = _Segment.AllocationCycle
and $projection.AllocationCycleStartDate = _Segment.AllocationCycleStartDate
and $projection.AllocationCycleSegment = _Segment.AllocationCycleSegment
association [1..1] to I_AllocationCycleTP as _Cycle on $projection.AllocationType = _Cycle.AllocationType
and $projection.AllocationCycle = _Cycle.AllocationCycle
and $projection.AllocationCycleStartDate = _Cycle.AllocationCycleStartDate
{
//I_AllocationSegmentNote
key AllocationType,
key AllocationCycle,
key AllocationCycleStartDate,
key AllocationCycleSegment,
NoteText,
@ObjectModel.association.type: #TO_COMPOSITION_PARENT
_Segment,
@ObjectModel.association.type: #TO_COMPOSITION_ROOT
_Cycle
}