I_AllocationFieldGroupText

DDL: I_ALLOCATIONFIELDGROUPTEXT SQL: ALLOCFLGRP_T Type: view BASIC Package: ODATA_MANAGE_ALLOCATION

Allocation Field Group Text

I_AllocationFieldGroupText is a Basic CDS View that provides data about "Allocation Field Group Text" in SAP S/4HANA. It reads from 1 data source (t811m) and exposes 5 fields with key fields Language, AllocationType, AllocationFieldGroup. Part of development package ODATA_MANAGE_ALLOCATION.

Data Sources (1)

SourceAliasJoin Type
t811m t811m from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ALLOCFLGRP_T view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Allocation Field Group Text 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 #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu
KEY AllocationType tab
KEY AllocationFieldGroup fname
AllocFieldGroupRowText dtext1
AllocFieldGroupColumnText dtext2
@AbapCatalog.sqlViewName: 'ALLOCFLGRP_T'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Allocation Field Group Text'

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

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

@VDM.viewType: #BASIC
define view I_AllocationFieldGroupText as 
select from t811m 
{
  //t811m 

  key langu as Language, 
  key tab as AllocationType, 
  key fname as AllocationFieldGroup, 
  @Semantics.text: true
  dtext1 as AllocFieldGroupRowText, 
  dtext2 as AllocFieldGroupColumnText
}