A_CnsldtnLedgerT

DDL: A_CNSLDTNLEDGERT SQL: ACSLEDGERT Type: view BASIC

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)

SourceAliasJoin Type
I_CnsldtnLedgerT _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnLedger _CnsldtnLedger $projection.ConsolidationLedger = _CnsldtnLedger.ConsolidationLedger

Annotations (14)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationLedger I_CnsldtnLedgerT ConsolidationLedger Ledger
KEY Language I_CnsldtnLedgerT Language Report Text Language
ConsolidationLedgerText
_CnsldtnLedger _CnsldtnLedger

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view A_CnsldtnLedgerT.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ACSLEDGERT

CREATE VIEW A_CnsldtnLedgerT AS
SELECT
  _Source.ConsolidationLedger AS ConsolidationLedger,
  _Source.Language AS Language,
  cast(_Source.ConsolidationLedgerName as fincs_rldnr_t preserving type) AS ConsolidationLedgerText
FROM I_CnsldtnLedgerT AS _Source
LEFT OUTER JOIN A_CnsldtnLedger AS _CnsldtnLedger ON ConsolidationLedger = _CnsldtnLedger.ConsolidationLedger  -- association [0..1]
;