C_AllocationFieldGroup

DDL: C_ALLOCATIONFIELDGROUP SQL: CALLOCFLGRP Type: view CONSUMPTION

Allocation Field Group

C_AllocationFieldGroup is a Consumption CDS View that provides data about "Allocation Field Group" in SAP S/4HANA. It reads from 1 data source (I_AllocationFieldGroup) and exposes 9 fields with key fields AllocationType, AllocationPostingType, AllocationActualPlanVariant, AllocationFieldGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_AllocationFieldGroup I_AllocationFieldGroup from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_AllocationFieldGroupText _Text $projection.AllocationType = _Text.AllocationType and $projection.AllocationFieldGroup = _Text.AllocationFieldGroup and _Text.Language = $session.system_language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CALLOCFLGRP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Allocation Field Group view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY AllocationType AllocationType
KEY AllocationPostingType AllocationPostingType
KEY AllocationActualPlanVariant AllocationActualPlanVariant
KEY AllocationFieldGroup AllocationFieldGroup
AllocVariablePortingType AllocVariablePortingType
AllocFldActlPlnVarValue AllocFldActlPlnVarValue
AllocFieldGroupRowText _Text AllocFieldGroupRowText
AllocFieldGroupColumnText _Text AllocFieldGroupColumnText
_Text _Text
@AbapCatalog.sqlViewName: 'CALLOCFLGRP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Allocation Field Group'

@AccessControl.personalData.blocking:#NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

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

@VDM.viewType: #CONSUMPTION
define view C_AllocationFieldGroup as 
select from I_AllocationFieldGroup
  association [1..1] to I_AllocationFieldGroupText as _Text on $projection.AllocationType = _Text.AllocationType
                                                           and $projection.AllocationFieldGroup = _Text.AllocationFieldGroup
                                                           and _Text.Language = $session.system_language     
{ 
  key AllocationType, 
  key AllocationPostingType, 
  key AllocationActualPlanVariant, 
  key AllocationFieldGroup, 
      AllocVariablePortingType,
      AllocFldActlPlnVarValue,
      //AllocVariablePortingType,

      _Text.AllocFieldGroupRowText,
      _Text.AllocFieldGroupColumnText,
      
      _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ALLOCATIONFIELDGROUP",
"I_ALLOCATIONFIELDGROUPTEXT"
],
"ASSOCIATED":
[
"I_ALLOCATIONFIELDGROUPTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/