I_AllocationCycleFieldGroupTP

DDL: I_ALLOCATIONCYCLEFIELDGROUPTP SQL: ALLOCCYCFLDGRPTP Type: view TRANSACTIONAL

Allocation Cycle Field Group

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

Data Sources (1)

SourceAliasJoin Type
I_AllocationCycleFieldGroup I_AllocationCycleFieldGroup from

Associations (1)

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

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ALLOCCYCFLDGRPTP 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
EndUserText.label Allocation Cycle Field Group view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #TRANSACTIONAL view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.writeDraftPersistence ALOCYCFLDGRPD 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
AllocationFieldLabel
_Cycle _Cycle
@AbapCatalog.sqlViewName: 'ALLOCCYCFLDGRPTP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:#NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Allocation Cycle Field Group'

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

@VDM.viewType: #TRANSACTIONAL

@ObjectModel:
{
  transactionalProcessingEnabled:true,
  writeDraftPersistence: 'ALOCYCFLDGRPD',
  semanticKey: ['AllocationType', 'AllocationCycle', 'AllocationCycleStartDate', 'AllocationFieldDisplayPosition' ],
  createEnabled: true,
  updateEnabled: true,
  deleteEnabled: true
//  entityChangeStateId: 'LastChangeTime'

}
define view I_AllocationCycleFieldGroupTP as 
select from I_AllocationCycleFieldGroup

  association [1..1] to I_AllocationCycleTP as _Cycle    on  $projection.AllocationType           = _Cycle.AllocationType
                                                         and $projection.AllocationCycle          = _Cycle.AllocationCycle
                                                         and $projection.AllocationCycleStartDate = _Cycle.AllocationCycleStartDate
{
  //I_AllocationCycleFieldGroup 

  key AllocationType, 
  key AllocationCycle, 
  key AllocationCycleStartDate, 
  key AllocationFieldDisplayPosition, 
  AllocationFieldGroup,
  
  @ObjectModel.readOnly: true
  cast('X' as boolean) as AllocationFieldActive,
  
  @ObjectModel.readOnly: true
  cast('' as rowtext ) as AllocationFieldLabel,
  
  @ObjectModel.association.type:  [ #TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ]
  _Cycle
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ALLOCATIONCYCLEFIELDGROUP"
],
"ASSOCIATED":
[
"I_ALLOCATIONCYCLETP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/