P_GLAcctTxtInMaintLang

DDL: P_GLACCTTXTINMAINTLANG SQL: PGLATIML Type: view BASIC

P_GLAcctTxtInMaintLang is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_ChartOfAccounts, skat) and exposes 5 fields with key fields ChartOfAccounts, GLAccount.

Data Sources (2)

SourceAliasJoin Type
I_ChartOfAccounts chtaccts inner
skat text from

Annotations (6)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PGLATIML view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts skat ktopl
KEY GLAccount skat saknr
GLAccountName skat txt20
GLAccountLongName skat txt50
Language I_ChartOfAccounts MaintenanceLanguage
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true

@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PGLATIML'
define view P_GLAcctTxtInMaintLang
  as select from skat as text 
    inner join   I_ChartOfAccounts as chtaccts on text.ktopl = chtaccts.ChartOfAccounts
{
  key text.ktopl as ChartOfAccounts,
  key text.saknr as GLAccount,
      text.txt20 as GLAccountName,
      text.txt50 as GLAccountLongName,
      chtaccts.MaintenanceLanguage as Language
}
where
  text.spras = chtaccts.MaintenanceLanguage;   
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CHARTOFACCOUNTS",
"SKAT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/