I_GLAccountTypeText

DDL: I_GLACCOUNTTYPETEXT SQL: IGLACCTYPETXT Type: view BASIC Package: FINS_GL_ACCOUNT_TYPE_VDM

G/L Account Type - Text

I_GLAccountTypeText is a Basic CDS View that provides data about "G/L Account Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields GLAccountType, Language. It has 2 associations to related views. Part of development package FINS_GL_ACCOUNT_TYPE_VDM.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_GLAccountType _GLAccountType $projection.GLAccountType = _GLAccountType.GLAccountType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IGLACCTYPETXT view
EndUserText.label G/L Account Type - Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey GLAccountType view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
Analytics.dataExtraction.enabled true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY GLAccountType domvalue_l
KEY Language ddlanguage
GLAccountTypeName ddtext
DomainValue domvalue_l
_Language _Language
_GLAccountType _GLAccountType
@AbapCatalog.sqlViewName: 'IGLACCTYPETXT'
@EndUserText.label: 'G/L Account Type - Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'GLAccountType'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.buffering.status: #NOT_ALLOWED
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #B
@Analytics: { dataExtraction.enabled: true }
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE, #LANGUAGE_DEPENDENT_TEXT,#EXTRACTION_DATA_SOURCE]
@Search.searchable: true
define view I_GLAccountTypeText
  as select from dd07t
  association [1..1] to I_GLAccountType as _GLAccountType on $projection.GLAccountType = _GLAccountType.GLAccountType
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_GLAccountType'
      @ObjectModel.text.element: ['GLAccountTypeName']
  key domvalue_l as GLAccountType,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language
  key ddlanguage as Language,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text: true
      ddtext     as GLAccountTypeName,
      @Analytics.hidden: true
      @Consumption.hidden: true
      domvalue_l as DomainValue,
      _Language,
      _GLAccountType
}
where
      domname  = 'GLACCOUNT_TYPE'
  and as4local = 'A'