P_CustomerGLAccountValueHelp

DDL: P_CUSTOMERGLACCOUNTVALUEHELP SQL: PGLACOUNTDVH Type: view CONSUMPTION

GL Account with Reconciliation Account Type Customers

P_CustomerGLAccountValueHelp is a Consumption CDS View that provides data about "GL Account with Reconciliation Account Type Customers" in SAP S/4HANA. It reads from 1 data source (I_GLAccountStdVH) and exposes 4 fields with key fields GLAccount, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountStdVH I_GLAccountStdVH from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PGLACOUNTDVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label GL Account with Reconciliation Account Type Customers view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey GLAccount view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.private true view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY GLAccount GLAccount G/L Account
KEY CompanyCode CompanyCode Company Code
GLAccountName G/L Account Name
ChartOfAccounts ChartOfAccounts
@AbapCatalog.sqlViewName: 'PGLACOUNTDVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'GL Account with Reconciliation Account Type Customers'
@ClientHandling.algorithm : #SESSION_VARIABLE

@ObjectModel.representativeKey: 'GLAccount'
@Metadata.ignorePropagatedAnnotations: true

@VDM.viewType: #CONSUMPTION
@VDM.private: true
@Search.searchable: true
@Consumption.ranked: true

define view P_CustomerGLAccountValueHelp

  as select from I_GLAccountStdVH
{
      @ObjectModel.text.element:  [ 'GLAccountName' ]
      @EndUserText.label: 'G/L Account'
      @EndUserText.quickInfo: 'G/L Account'
      @Search: { defaultSearchElement: true, ranking: #HIGH }
  key GLAccount,
  
      @EndUserText.label: 'Company Code'
      @EndUserText.quickInfo: 'Company Code'
      @Search: { defaultSearchElement: true, ranking: #LOW }
  key CompanyCode,

      @Semantics.text: true
      @EndUserText.label: 'G/L Account Name'
      @EndUserText.quickInfo: 'G/L Account Name'
      @Search: { defaultSearchElement: true, ranking: #MEDIUM }
      _Text[1:Language =  $session.system_language].GLAccountName,

      @Consumption.hidden: true
      ChartOfAccounts
}
where ReconciliationAccountType = 'D'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_GLACCOUNTSTDVH",
"I_GLACCOUNTTEXTINCOMPANYCODE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/