I_CnsldtnLedgerT

DDL: I_CNSLDTNLEDGERT Type: view BASIC Package: FIN_CS_MD_LEDGER

Consolidation Ledger - Text

I_CnsldtnLedgerT (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Group Reporting

I_CnsldtnLedgerT is a Basic CDS View that provides data about "Consolidation Ledger - Text" in SAP S/4HANA. It reads from 1 data source (t881t) and exposes 4 fields with key fields ConsolidationLedger, Language. It has 1 association to related views. It is exposed through 2 OData services (ASQL_F2971, ASQL_F6164). Part of development package FIN_CS_MD_LEDGER.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD-2CL
CapabilitiesData Source for Defining CDS Entities,Association Target for Defining CDS Entities,Data Source in SQL Select,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageGroup Reporting for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t881t t881t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICCLEDGERT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ConsolidationLedger view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
EndUserText.label Consolidation Ledger - Text view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F2971 ASQL_F2971 C2 NOT_RELEASED
ASQL_F6164 ASQL_F6164 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationLedger rldnr Ledger (Compat.)
KEY Language langu Primary lang.
ConsolidationLedgerName name Ledger Name
_Language _Language

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 I_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.

CREATE VIEW I_CnsldtnLedgerT AS
SELECT
  rldnr AS ConsolidationLedger,
  langu AS Language,
  name AS ConsolidationLedgerName
FROM t881t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;