P_AllocationFieldLabel

DDL: P_ALLOCATIONFIELDLABEL SQL: PALLOCFLDLBL Type: view CONSUMPTION Package: ODATA_MANAGE_ALLOCATION

Allocation Field Label

P_AllocationFieldLabel is a Consumption CDS View that provides data about "Allocation Field Label" in SAP S/4HANA. It reads from 1 data source (I_ChangeDocFieldNamesT) and exposes 4 fields with key fields Language, DatabaseTable, AllocationFieldName. Part of development package ODATA_MANAGE_ALLOCATION.

Data Sources (1)

SourceAliasJoin Type
I_ChangeDocFieldNamesT I_ChangeDocFieldNamesT from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PALLOCFLDLBL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED 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 #M view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY DatabaseTable DatabaseTable
KEY AllocationFieldName Value
AllocationFieldLabel Text
@AbapCatalog.sqlViewName: 'PALLOCFLDLBL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

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

@VDM.viewType: #CONSUMPTION
@VDM.private: true
define view P_AllocationFieldLabel
  as select from I_ChangeDocFieldNamesT
{
      @Semantics.language
  key Language,
  key DatabaseTable,
  key Value as AllocationFieldName,
      Text  as AllocationFieldLabel
}
where
  DatabaseTable = 'ACDOC_ALLOC'