A_GLAccountText

DDL: A_GLACCOUNTTEXT SQL: AFIGLACCOUNTT Type: view BASIC Package: FINS_FIS_API

API General Ledger Account Text

A_GLAccountText is a Basic CDS View that provides data about "API General Ledger Account Text" in SAP S/4HANA. It reads from 1 data source (I_GLAccountText) and exposes 7 fields with key fields ChartOfAccounts, GLAccount, Language. It has 1 association to related views. Part of development package FINS_FIS_API.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountText I_GLAccountText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_GLAccountInChartOfAccounts _GLAccountInChartOfAccounts $projection.ChartOfAccounts = _GLAccountInChartOfAccounts.ChartOfAccounts and $projection.GLAccount = _GLAccountInChartOfAccounts.GLAccount

Annotations (12)

NameValueLevelField
EndUserText.label API General Ledger Account Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName AFIGLACCOUNTT view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ChartOfAccounts
KEY GLAccount GLAccount
KEY Language Language
GLAccountName GLAccountName
GLAccountLongName GLAccountLongName
LastChangeDateTime LastChangeDateTime
_GLAccountInChartOfAccounts _GLAccountInChartOfAccounts
@EndUserText.label: 'API General Ledger Account Text'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@AbapCatalog.sqlViewName: 'AFIGLACCOUNTT'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #CHECK

// A-view annotations

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

define view A_GLAccountText
  as select from I_GLAccountText
  association [1..1] to A_GLAccountInChartOfAccounts as _GLAccountInChartOfAccounts on  $projection.ChartOfAccounts = _GLAccountInChartOfAccounts.ChartOfAccounts
                                                                                    and $projection.GLAccount       = _GLAccountInChartOfAccounts.GLAccount
{
      //I_GLAccountText

  key ChartOfAccounts,
  key GLAccount,
  key Language,
      GLAccountName,
      GLAccountLongName,
      LastChangeDateTime,
      /* Associations */
      //A_GLAccountInChartOfAccounts

      _GLAccountInChartOfAccounts
}