I_ALLOCATIONFIELDGROUP

CDS View

Allocation Field Group

I_ALLOCATIONFIELDGROUP is a CDS View in S/4HANA. Allocation Field Group. It contains 1 fields. 5 CDS views read from this table.

CDS Views using this table (5)

ViewTypeJoinVDMDescription
C_AllocationFieldGroup view from CONSUMPTION Allocation Field Group
C_AllocationFieldGroupVH view from CONSUMPTION Allocation Field Group Value Help
I_AllocFldGrpCalc view from BASIC Allocation Field Group
P_AllocationFieldGroup view from CONSUMPTION Allocation Field Group
P_AllocFldGroupDataInformation view from CONSUMPTION Allocation Field Group Data Information

Fields (1)

KeyField CDS FieldsUsed in Views
KEY AllocationType AllocationType 1
@AbapCatalog.sqlViewName: 'ALLOCFLDGRP'
@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: #C
@ObjectModel.usageType.sizeCategory: #S

@VDM.viewType: #BASIC
define view I_AllocationFieldGroup as
  select from t811j

  association [0..1] to I_AllocDataFldDesc as _Field on  $projection.AllocationType        = _Field.AllocationType
                                                    and  $projection.AllocationFieldGroup  = _Field.AllocDataFldDefName
{
  key cast(tab as fco_allocation_context preserving type) as AllocationType,
  key cast(alart as fco_allocation_posting_type preserving type) as AllocationPostingType,
  key ipknz as AllocationActualPlanVariant, //Actual/Planned,

  key cast(field as fco_alloc_var_portion_type preserving type) as AllocationFieldGroup,
  rcfld as AllocVariablePortingType,

  cast(
  case _Field.AllocFieldGroupTableName
    when 'ACDOCA' then 'I'
    when 'ACDOCPC' then 'P'
    else
      case _Field.AllocAdditionalValue
        when '0' then 'I'
        else 'P'
      end
  end as fco_alloc_ipknz ) as AllocFldActlPlnVarValue,
  _Field.AllocDataFldDefName,
//  waers as CurrencyCode,

//  alttab,

//  altfld,

//  exttab,

//  extfld,

//  sortab,

//  sorfld,

//  swaer,

//  intuse,

//  extuse,

//    rcfld as AllocVariablePortingType //missing GFN

//  wtype,

//  adstk,

//  def_fgroup,

//  fgbez


  _Field
}