I_GeneralLedgerAccountVH

DDL: I_GENERALLEDGERACCOUNTVH SQL: IGLACCNTVH Type: view COMPOSITE

General Ledger Value Help

I_GeneralLedgerAccountVH is a Composite CDS View that provides data about "General Ledger Value Help" in SAP S/4HANA. It reads from 1 data source (I_GLAccount) and exposes 4 fields with key fields GLAccount, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_GLAccount I_GLAccount from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IGLACCNTVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AbapCatalog.preserveKey true view
EndUserText.label General Ledger Value Help view
AccessControl.authorizationCheck #CHECK view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY GLAccount GLAccount
KEY CompanyCode CompanyCode
ChartOfAccounts ChartOfAccounts
GLAccountName _Text GLAccountName
@AbapCatalog.sqlViewName: 'IGLACCNTVH'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
              usageType.serviceQuality: #C,
              usageType.sizeCategory: #L,
              usageType.dataClass: #TRANSACTIONAL
                }
@AbapCatalog.preserveKey:true
@EndUserText.label: 'General Ledger Value Help'
@AccessControl.authorizationCheck: #CHECK
define view I_GeneralLedgerAccountVH
        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: #HIGH }
   key CompanyCode,

   @Search: { defaultSearchElement: true, ranking: #MEDIUM }
   ChartOfAccounts,
  @Semantics.text: true
  @Search: { defaultSearchElement: true, ranking: #HIGH }
  _Text.GLAccountName
}