C_MM_GLAccountVH

DDL: C_MM_GLACCOUNTVH SQL: CMMGLACC_VH Type: view CONSUMPTION Package: APPL_MM_COMP_ACCTASSGMT

GL Account Value Help in Material Management

C_MM_GLAccountVH is a Consumption CDS View that provides data about "GL Account Value Help in Material Management" in SAP S/4HANA. It reads from 1 data source (I_GLAccount) and exposes 5 fields with key fields GLAccount, ChartOfAccounts, CompanyCode. Part of development package APPL_MM_COMP_ACCTASSGMT.

Data Sources (1)

SourceAliasJoin Type
I_GLAccount I_GLAccount from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CMMGLACC_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey GLAccount view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label GL Account Value Help in Material Management view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GLAccount GLAccount
KEY ChartOfAccounts ChartOfAccounts
KEY CompanyCode CompanyCode
GLAccountName _Text GLAccountName
GLAccountLongName _Text GLAccountLongName
@AbapCatalog.sqlViewName: 'CMMGLACC_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.semanticKey: [ 'GLAccount' ]
@ObjectModel.representativeKey: 'GLAccount'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'GL Account Value Help in Material Management'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #REQUIRED

// ACCOUNT REUSE VIEW 1711, NO DCL


define view C_MM_GLAccountVH as select from I_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 }
   key GLAccount,

   @Search: { defaultSearchElement: true, ranking: #MEDIUM }
   key ChartOfAccounts,

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

  @Semantics.text: true
  @Search: { defaultSearchElement: true, ranking: #HIGH }

  _Text.GLAccountName,

  @Semantics.text: true
   @Search: { defaultSearchElement: true, ranking: #HIGH }

  _Text.GLAccountLongName



}