C_AllocationCycleFieldGroupTP

DDL: C_ALLOCATIONCYCLEFIELDGROUPTP SQL: CALOCYCFLDGRPTP Type: view CONSUMPTION Package: ODATA_MANAGE_ALLOCATION

Allocation Cycle Field Group

C_AllocationCycleFieldGroupTP is a Consumption CDS View that provides data about "Allocation Cycle Field Group" in SAP S/4HANA. It reads from 1 data source (I_AllocationCycleFieldGroupTP) and exposes 8 fields with key fields AllocationType, AllocationCycle, AllocationCycleStartDate, AllocationFieldDisplayPosition. It has 1 association to related views. Part of development package ODATA_MANAGE_ALLOCATION.

Data Sources (1)

SourceAliasJoin Type
I_AllocationCycleFieldGroupTP I_AllocationCycleFieldGroupTP from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_AllocationCycleTP _Cycle $projection.AllocationType = _Cycle.AllocationType and $projection.AllocationCycle = _Cycle.AllocationCycle and $projection.AllocationCycleStartDate = _Cycle.AllocationCycleStartDate

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CALOCYCFLDGRPTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #CONSUMPTION view
EndUserText.label Allocation Cycle Field Group view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY AllocationType AllocationType
KEY AllocationCycle AllocationCycle
KEY AllocationCycleStartDate AllocationCycleStartDate
KEY AllocationFieldDisplayPosition AllocationFieldDisplayPosition
AllocationFieldGroup AllocationFieldGroup
AllocationFieldActive AllocationFieldActive
AllocationFieldLabel AllocationFieldLabel
_Cycle _Cycle
@AbapCatalog.sqlViewName: 'CALOCYCFLDGRPTP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:#NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

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

@VDM.viewType: #CONSUMPTION

@EndUserText.label: 'Allocation Cycle Field Group'
@ObjectModel:
{
  transactionalProcessingDelegated: true,
//  draftEnabled: true,

  createEnabled: true,
  updateEnabled: true,
  deleteEnabled: true
//  entityChangeStateId: 'LastChangeTime'

}
define view C_AllocationCycleFieldGroupTP as 
select from I_AllocationCycleFieldGroupTP
  association [1..1] to C_AllocationCycleTP        as _Cycle       on  $projection.AllocationType              = _Cycle.AllocationType
                                                                   and $projection.AllocationCycle             = _Cycle.AllocationCycle
                                                                   and $projection.AllocationCycleStartDate    = _Cycle.AllocationCycleStartDate 
{
  //I_AllocationCycleFieldGroupTP 

  key AllocationType, 
  key AllocationCycle, 
  key AllocationCycleStartDate, 
  key AllocationFieldDisplayPosition, 
  AllocationFieldGroup,
  AllocationFieldActive,      
  AllocationFieldLabel,
  
  @ObjectModel.association.type:  [ #TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ] 
  _Cycle
}