I_AliasType

DDL: I_ALIASTYPE Type: view_entity BASIC Package: BF_PAYT_SYST

Alias Type

I_AliasType is a Basic CDS View that provides data about "Alias Type" in SAP S/4HANA. It reads from 1 data source (alias_type) and exposes 3 fields with key field AliasType. It has 1 association to related views. Part of development package BF_PAYT_SYST.

Data Sources (1)

SourceAliasJoin Type
alias_type alias_type from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_AliasTypeText _Text $projection.AliasType = _Text.AliasType

Annotations (7)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Alias Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AliasType alias_type
AliasTypeText
_Text _Text
@AbapCatalog.viewEnhancementCategory: [#NONE]
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Alias Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #CUSTOMIZING
}
define view entity I_AliasType as select from alias_type 
 association [1..*] to I_AliasTypeText as _Text on $projection.AliasType = _Text.AliasType{
  key alias_type as AliasType,
     _Text[Language = $session.system_language].AliasTypeText as AliasTypeText, 
     _Text
}