A_LedgerText

DDL: A_LEDGERTEXT SQL: AFILEDGERTEXT Type: view BASIC Package: FINS_LEDGER_API

API Ledger Text

A_LedgerText is a Basic CDS View that provides data about "API Ledger Text" in SAP S/4HANA. It reads from 1 data source (I_LedgerText) and exposes 4 fields with key fields Ledger, Language. It has 1 association to related views. Part of development package FINS_LEDGER_API.

Data Sources (1)

SourceAliasJoin Type
I_LedgerText I_LedgerText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_Ledger _Ledger $projection.Ledger = _Ledger.Ledger

Annotations (12)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Ledger Ledger
KEY Language Language
LedgerName LedgerName
_Ledger _Ledger
@EndUserText.label: 'API Ledger Text'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@AbapCatalog.sqlViewName: 'AFILEDGERTEXT'
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #B,
  sizeCategory: #M
}

// A-view annotations

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

define view A_LedgerText
  as select from I_LedgerText
  association [1..1] to A_Ledger as _Ledger on $projection.Ledger = _Ledger.Ledger

  //association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{
      //I_LedgerText

  key Ledger,
  key Language,
      LedgerName,
      /* Associations */
      _Ledger
      //_Language

}