I_CnsldtnGLAccountT_2

DDL: I_CNSLDTNGLACCOUNTT_2 Type: view COMPOSITE Package: FIN_CS_MD_GLACCOUNT

Consolidation Combined G/L Account - Txt

I_CnsldtnGLAccountT_2 (Composite)

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

CnsldtnGLAccountText · Group Reporting

I_CnsldtnGLAccountT_2 is a Composite CDS View that provides data about "Consolidation Combined G/L Account - Txt" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnGLAccount_2) and exposes 10 fields with key fields Language, ChartOfAccounts, GLAccount. It has 3 associations to related views. Part of development package FIN_CS_MD_GLACCOUNT.

SAP API Hub

CategoryComposite
StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD-2CL
CapabilitiesData Source for Data Extraction,Data 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)Released
PackageGroup Reporting for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnGLAccount_2 _Main inner

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_CnsldtnGLChartOfAccounts _ChartOfAccounts $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts
[1..1] I_CnsldtnGLAccount_2 _GLAccount $projection.GLAccount = _GLAccount.GLAccount and $projection.ChartOfAccounts = _GLAccount.ChartOfAccounts

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICSGLACCOUNTT2 view
AbapCatalog.compiler.compareFilter true view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey GLAccount view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name CnsldtnGLAccountText view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Combined G/L Account - Txt view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Language _Source Language Report Text Language
KEY ChartOfAccounts G/L Chart of Accounts
KEY GLAccount G/L Account
AdditionalMasterDataSource Consolidation Additional Master Data Source
GLAccountName G/L Account Name
GLAccountLongName Long Description
CnsldtnIsAdditionalMasterData _Source CnsldtnIsAdditionalMasterData Is Additional Master Data
_Language _Language
_ChartOfAccounts _ChartOfAccounts
_GLAccount _GLAccount

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_CnsldtnGLAccountT_2.
-- 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_CnsldtnGLAccountT_2 AS
SELECT
  _Source.Language AS Language,
  cast( _Source.ChartOfAccounts as fincs_chartofaccounts preserving type ) AS ChartOfAccounts,
  cast( _Source.GLAccount as fincs_glaccount preserving type ) AS GLAccount,
  cast( _Source.AdditionalMasterDataSource as fincs_masterdatasource preserving type ) AS AdditionalMasterDataSource,
  cast( _Source.GLAccountName as fincs_glaccountname preserving type ) AS GLAccountName,
  cast( _Source.GLAccountLongName as fincs_long_description_50 preserving type ) AS GLAccountLongName,
  _Source.CnsldtnIsAdditionalMasterData AS CnsldtnIsAdditionalMasterData
INNER JOIN I_CnsldtnGLAccount_2 AS _Main ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnGLChartOfAccounts AS _ChartOfAccounts ON ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnGLAccount_2 AS _GLAccount ON GLAccount = _GLAccount.GLAccount AND ChartOfAccounts = _GLAccount.ChartOfAccounts  -- association [1..1]
;