I_LedgerGroupText

DDL: I_LEDGERGROUPTEXT SQL: IFILEDGERGROUPT Type: view BASIC

Ledger Group - Text

I_LedgerGroupText (Basic)

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

Accounting and Financial Close

I_LedgerGroupText is a Basic CDS View that provides data about "Ledger Group - Text" in SAP S/4HANA. It reads from 1 data source (fagl_tldgrpt) and exposes 4 fields with key fields LedgerGroup, Language.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-GL-A
CapabilitiesData Source for Defining CDS Entities, Language-Dependent Text
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to ledger group names. 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_tldgrpt fagl_tldgrpt from

Annotations (13)

NameValueLevelField
EndUserText.label Ledger Group - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFILEDGERGROUPT view
ObjectModel.representativeKey LedgerGroup view
AccessControl.authorizationCheck #NOT_REQUIRED 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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LedgerGroup ldgrp Target Ledger Group
KEY Language langu Primary lang.
LedgerGroupName name Text Field
_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_LedgerGroupText.
-- 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: IFILEDGERGROUPT

CREATE VIEW I_LedgerGroupText AS
SELECT
  ldgrp AS LedgerGroup,
  langu AS Language,
  name AS LedgerGroupName
FROM fagl_tldgrpt
;