I_GLAccountGroupText

DDL: I_GLACCOUNTGROUPTEXT SQL: IGLACCTGRPTXT Type: view BASIC

G/L Account Group - Text

I_GLAccountGroupText (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_GLAccountGroupText is a Basic CDS View that provides data about "G/L Account Group - Text" in SAP S/4HANA. It reads from 1 data source (t077z) and exposes 6 fields with key fields ChartOfAccounts, GLAccountGroup, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
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 the prerequisites for answering the following business questions:</p> <ul> <li><p>How many G/L account groups descriptions are defined in different languages?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t077z t077z from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IGLACCTGRPTXT view
EndUserText.label G/L Account Group - Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey GLAccountGroup view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ktopl G/L Chart of Accounts
KEY GLAccountGroup ktoks G/L Account Group
KEY Language spras Off. Language
AccountGroupName txt30 Account Group Name
_Language _Language
_ChartOfAccounts _ChartOfAccounts

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_GLAccountGroupText.
-- 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: IGLACCTGRPTXT

CREATE VIEW I_GLAccountGroupText AS
SELECT
  ktopl AS ChartOfAccounts,
  ktoks AS GLAccountGroup,
  spras AS Language,
  txt30 AS AccountGroupName
FROM t077z
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_ChartOfAccounts AS _ChartOfAccounts ON ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts  -- association [0..1]
;