A_CnsldtnLedger

DDL: A_CNSLDTNLEDGER SQL: ACSLEDGER Type: view BASIC

Consolidation Ledger

A_CnsldtnLedger is a Basic CDS View that provides data about "Consolidation Ledger" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnLedger) and exposes 3 fields with key field ConsolidationLedger. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnLedger _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_CnsldtnLedgerT _CnsldtnLedgerT $projection.ConsolidationLedger = _CnsldtnLedgerT.ConsolidationLedger

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ACSLEDGER view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Consolidation Ledger view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entitySet.name ConsolidationLedger view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationLedger I_CnsldtnLedger ConsolidationLedger Ledger
GroupCurrency I_CnsldtnLedger GroupCurrency Ledger curr.
_CnsldtnLedgerT _CnsldtnLedgerT

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_CnsldtnLedger.
-- 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: ACSLEDGER

CREATE VIEW A_CnsldtnLedger AS
SELECT
  _Source.ConsolidationLedger AS ConsolidationLedger,
  _Source.GroupCurrency AS GroupCurrency
FROM I_CnsldtnLedger AS _Source
LEFT OUTER JOIN A_CnsldtnLedgerT AS _CnsldtnLedgerT ON ConsolidationLedger = _CnsldtnLedgerT.ConsolidationLedger  -- association [0..*]
;