A_LedgerText
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)
| Source | Alias | Join Type |
|---|---|---|
| I_LedgerText | I_LedgerText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_Ledger | _Ledger | $projection.Ledger = _Ledger.Ledger |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA