I_ALLOCATIONCYCLENOTETP

CDS View

Allocation cycle note

I_ALLOCATIONCYCLENOTETP is a CDS View in S/4HANA. Allocation cycle note. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
C_AllocationCycleNoteTP view from CONSUMPTION Allocation cycle note
P_AllocationCycleNote view from CONSUMPTION
@AbapCatalog.sqlViewName: 'ALLOCNTCYCTP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:#NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@EndUserText.label: 'Allocation cycle note'

@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M

@VDM.viewType: #TRANSACTIONAL
@ObjectModel:
{
  transactionalProcessingEnabled:true,
  writeDraftPersistence: 'ALLOCNTCYCTPD',
  semanticKey: ['AllocationType', 'AllocationCycle', 'AllocationCycleStartDate' ],
  createEnabled: true,
  updateEnabled: true,
  deleteEnabled: true
}
define view I_AllocationCycleNoteTP
  as select from I_AllocationCycleNote
  association [1..1] to I_AllocationCycleTP as _Cycle on  $projection.AllocationType           = _Cycle.AllocationType
                                                      and $projection.AllocationCycle          = _Cycle.AllocationCycle
                                                      and $projection.AllocationCycleStartDate = _Cycle.AllocationCycleStartDate
{
      //I_AllocationCycleNote

  key AllocationType,
  key AllocationCycle,
  key AllocationCycleStartDate,
      NoteText,

      @ObjectModel.association.type:  [ #TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ]
      _Cycle
}