I_GLAcctInChtOfAcctsStdVH

DDL: I_GLACCTINCHTOFACCTSSTDVH SQL: IFIGLAICOA__VH Type: view COMPOSITE Package: FINS_FIS_FICO

G/L Account In Chart Of Accounts

I_GLAcctInChtOfAcctsStdVH is a Composite CDS View that provides data about "G/L Account In Chart Of Accounts" in SAP S/4HANA. It reads from 1 data source (I_GLAccountInChartOfAccounts) and exposes 5 fields with key fields ChartOfAccounts, GLAccount. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountInChartOfAccounts I_GLAccountInChartOfAccounts from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIGLAICOA__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey GLAccount view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view
EndUserText.label G/L Account In Chart Of Accounts view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ChartOfAccounts
KEY GLAccount GLAccount
GLAccountExternal
_Text _Text
_ChartOfAccounts _ChartOfAccounts
//GENERATED:001:GlBfhyFV7jUzaDT}MP9DVm

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

@VDM.viewType: #COMPOSITE

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'GLAccount'

@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B

@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations: ['_Text']

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Consumption.ranked: true
@EndUserText.label: 'G/L Account In Chart Of Accounts'
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE,#SEARCHABLE_ENTITY,#VALUE_HELP_PROVIDER]
//important comments:

//Application Manage GL Account Master Data only shows SKA1-SAKAN(GLAccountExternal) in the UI instead of SKA1-SAKNR(GLAccount) since 2017 year.

//So the value help adds GLAccountExternal

define view I_GLAcctInChtOfAcctsStdVH as select from I_GLAccountInChartOfAccounts {
  @ObjectModel.foreignKey.association: '_ChartOfAccounts'
  key ChartOfAccounts,
  @ObjectModel.text.association: '_Text'
  //@Consumption.hidden: true

  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  key GLAccount,

  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  cast( GLAccountExternal as fac_sakan ) as GLAccountExternal,
  _Text,

  @Consumption.hidden: true
  _ChartOfAccounts
}