I_LedgerGroup

DDL: I_LEDGERGROUP SQL: IFILEDGERGROUP Type: view BASIC Package: FINS_LEDGER_GROUP_VDM

Ledger Group

I_LedgerGroup (Basic)

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

Accounting and Financial Close

I_LedgerGroup is a Basic CDS View (Dimension) that provides data about "Ledger Group" in SAP S/4HANA. It reads from 1 data source (fagl_tldgrp) and exposes 2 fields with key field LedgerGroup. It has 1 association to related views. Part of development package FINS_LEDGER_GROUP_VDM.

SAP Help Documentation

CategoryCDS Views for Master Data
Purpose
This CDS view provides ledger group information. This CDS view provides the prerequisites for answering the following business questions: How many ledger groups are defined? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Further important fields Important fields in this view include the following: LedgerGroup

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-GL-A-2CL
CapabilitiesData Source for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides ledger group information. This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li> <p>How many ledger groups are defined?</p> </li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
fagl_tldgrp fagl_tldgrp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_LedgerGroupText _Text $projection.LedgerGroup = _Text.LedgerGroup

Annotations (14)

NameValueLevelField
EndUserText.label Ledger Group view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IFILEDGERGROUP view
ObjectModel.representativeKey LedgerGroup 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
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LedgerGroup ldgrp Target Ledger Group
_Text _Text

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_LedgerGroup.
-- 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: IFILEDGERGROUP

CREATE VIEW I_LedgerGroup AS
SELECT
  ldgrp AS LedgerGroup
FROM fagl_tldgrp
LEFT OUTER JOIN I_LedgerGroupText AS _Text ON LedgerGroup = _Text.LedgerGroup  -- association [0..*]
;