I_MM_GLAccountVH

DDL: I_MM_GLACCOUNTVH SQL: IMMGLACCT_VH Type: view COMPOSITE

Purchasing GL Account Value Help

I_MM_GLAccountVH is a Composite CDS View that provides data about "Purchasing GL Account Value Help" in SAP S/4HANA. It reads from 1 data source (I_GLAccountStdVH) and exposes 5 fields with key fields GLAccount, CompanyCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountStdVH GLAccount from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_GlAccountTextInCompanycode _Text $projection.CompanyCode = _Text.CompanyCode and $projection.GLAccount = _Text.GLAccount and _Text.Language = $session.system_language

Annotations (14)

NameValueLevelField
VDM.viewType #COMPOSITE view
EndUserText.label Purchasing GL Account Value Help view
AbapCatalog.sqlViewName IMMGLACCT_VH view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey GLAccount view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
Search.searchable true view
Consumption.ranked true view
AccessControl.authorizationCheck #CHECK view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GLAccount I_GLAccountStdVH GLAccount
KEY CompanyCode I_GLAccountStdVH CompanyCode
ChartOfAccounts I_GLAccountStdVH ChartOfAccounts
GLAccountLongName _Text GLAccountLongName
_Text _Text
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Purchasing GL Account Value Help'

@AbapCatalog.sqlViewName: 'IMMGLACCT_VH'
@AbapCatalog.compiler.compareFilter: true

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.representativeKey: 'GLAccount'

@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AccessControl.privilegedAssociations: ['_Text']
@Search.searchable: true
@Consumption.ranked: true
@AccessControl.authorizationCheck: #CHECK

define view I_MM_GLAccountVH
  as select from I_GLAccountStdVH as GLAccount
  association [0..1] to I_GlAccountTextInCompanycode as _Text on  $projection.CompanyCode = _Text.CompanyCode
                                                              and $projection.GLAccount   = _Text.GLAccount
                                                              and _Text.Language = $session.system_language
{
      @Search: { defaultSearchElement: true, ranking: #HIGH } //Note 2856776,  Note 3026562

      @ObjectModel.text.association: '_Text'
  key GLAccount.GLAccount       as GLAccount,

      @Search: { defaultSearchElement: true, ranking: #HIGH }
  key GLAccount.CompanyCode     as CompanyCode,

      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      GLAccount.ChartOfAccounts as ChartOfAccounts,

      _Text.GLAccountLongName,  //Note 2850800


      //Asssociations

      _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_GLACCOUNTSTDVH",
"I_GLACCOUNTTEXTINCOMPANYCODE"
],
"ASSOCIATED":
[
"I_GLACCOUNTTEXTINCOMPANYCODE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/