I_SpecialGLCodeText

DDL: I_SPECIALGLCODETEXT SQL: IFISPECGLCODET Type: view BASIC

Special General Ledger Code - Text

I_SpecialGLCodeText is a Basic CDS View that provides data about "Special General Ledger Code - Text" in SAP S/4HANA. It reads from 1 data source (t074t) and exposes 7 fields with key fields FinancialAccountType, SpecialGLCode, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t074t t074t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_FinancialAccountType _FinancialAccountType $projection.FinancialAccountType = _FinancialAccountType.FinancialAccountType

Annotations (15)

NameValueLevelField
EndUserText.label Special General Ledger Code - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFISPECGLCODET view
ObjectModel.representativeKey SpecialGLCode view
ObjectModel.dataCategory #TEXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY FinancialAccountType koart
KEY SpecialGLCode shbkz
KEY Language spras
SpecialGLCodeName ktext
SpecialGLCodeLongName ltext
_Language _Language
_FinancialAccountType _FinancialAccountType
@EndUserText.label: 'Special General Ledger Code - Text'
@Analytics: { dataExtraction.enabled: true}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFISPECGLCODET'
@ObjectModel.representativeKey: 'SpecialGLCode'
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.buffering.numberOfKeyFields: 1
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE,#LANGUAGE_DEPENDENT_TEXT,#EXTRACTION_DATA_SOURCE]
define view I_SpecialGLCodeText
  as select from t074t
  association [0..1] to I_Language             as _Language             on $projection.Language = _Language.Language
  association [1..1] to I_FinancialAccountType as _FinancialAccountType on $projection.FinancialAccountType = _FinancialAccountType.FinancialAccountType
{
      @ObjectModel.foreignKey.association: '_FinancialAccountType' //Inserted by VDM CDS Suite Plugin

  key koart as FinancialAccountType,
      @ObjectModel.text.element: ['SpecialGLCodeLongName', 'SpecialGLCodeName']
  key shbkz as SpecialGLCode,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key spras as Language,
      @Semantics.text: true
      ktext as SpecialGLCodeName,
      @Semantics.text: true
      ltext as SpecialGLCodeLongName,
      _Language,
      _FinancialAccountType
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T074T"
],
"ASSOCIATED":
[
"I_FINANCIALACCOUNTTYPE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/