A_CnsldtnLedgerT
Consolidation Ledger Text
A_CnsldtnLedgerT is a Basic CDS View that provides data about "Consolidation Ledger Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnLedgerT) and exposes 4 fields with key fields ConsolidationLedger, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnLedgerT | _Source | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | A_CnsldtnLedger | _CnsldtnLedger | $projection.ConsolidationLedger = _CnsldtnLedger.ConsolidationLedger |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACSLEDGERT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Consolidation Ledger Text | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| OData.entitySet.name | ConsolidationLedgerText | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ConsolidationLedger | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConsolidationLedger | I_CnsldtnLedgerT | ConsolidationLedger | |
| KEY | Language | I_CnsldtnLedgerT | Language | |
| ConsolidationLedgerText | ||||
| _CnsldtnLedger | _CnsldtnLedger |
@AbapCatalog.sqlViewName: 'ACSLEDGERT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Consolidation Ledger Text'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@OData.entitySet.name: 'ConsolidationLedgerText'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ConsolidationLedger'
@Metadata.ignorePropagatedAnnotations: true
define view A_CnsldtnLedgerT
as select from I_CnsldtnLedgerT as _Source
association [0..1] to A_CnsldtnLedger as _CnsldtnLedger on $projection.ConsolidationLedger = _CnsldtnLedger.ConsolidationLedger
{
key _Source.ConsolidationLedger,
@Semantics.language: true
key _Source.Language,
@Semantics.text: true
cast(_Source.ConsolidationLedgerName as fincs_rldnr_t preserving type) as ConsolidationLedgerText,
_CnsldtnLedger
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNSLDTNLEDGERT"
],
"ASSOCIATED":
[
"A_CNSLDTNLEDGER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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