P_GLACCTWITHCOCODE

DDL: P_GLACCTWITHCOCODE SQL: PGLACCTINCOCODE Type: view COMPOSITE

P_GLACCTWITHCOCODE is a Composite CDS View in SAP S/4HANA. It reads from 4 data sources (I_GLAccountInChartOfAccounts, I_FinancialStatementHier, I_ChartOfAccounts, I_CompanyCode) and exposes 7 fields with key fields GLAccount, CompanyCode. It has 1 association to related views.

Data Sources (4)

SourceAliasJoin Type
I_GLAccountInChartOfAccounts CorporateGroupAccount left_outer
I_FinancialStatementHier FSVERSION inner
I_ChartOfAccounts I_ChartOfAccounts left_outer
I_CompanyCode I_CompanyCode inner

Parameters (2)

NameTypeDefault
p_FinancialStatementHierarchy hryid
P_AlternativeGLAccountIsUsed char1

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_GlAccountTextInCompanycode _Text $projection.CompanyCode = _Text.CompanyCode and $projection.GLAccount = _Text.GLAccount

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PGLACCTINCOCODE view
AbapCatalog.compiler.compareFilter true view
VDM.private true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY GLAccount GLAccountInCompanyCode GLAccount General Ledger
KEY CompanyCode GLAccountInCompanyCode CompanyCode Receiver Company Code
ChartOfAccounts I_GLAccountInChartOfAccounts ChartOfAccounts Node Class
GLAccountendendasGLAccountExternal
CorporateGroupChartOfAccounts ChartOfAccounts CorporateGroupChartOfAccounts Group ChtAccts
CorporateGroupAccount I_GLAccountInChartOfAccounts CorporateGroupAccount Group Account Number
_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 P_GLACCTWITHCOCODE.
-- 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: PGLACCTINCOCODE
-- Parameters: p_FinancialStatementHierarchy : hryid, P_AlternativeGLAccountIsUsed : char1

CREATE VIEW P_GLACCTWITHCOCODE AS
SELECT
  GLAccountInCompanyCode.GLAccount AS GLAccount,
  GLAccountInCompanyCode.CompanyCode AS CompanyCode,
  CorporateGroupAccount.ChartOfAccounts AS ChartOfAccounts,
  case $parameters.P_AlternativeGLAccountIsUsed when '1' then case when AlternativeGLAccount = '' then GLAccountInCompanyCode.GLAccount else AlternativeGLAccount end else case FSVERSION.GroupChartOfAccountIsUsed when 'X' then case when CorporateGroupAccount.CorporateGroupAccount = '' then GLAccountInCompanyCode.GLAccount else CorporateGroupAccount.CorporateGroupAccount end else GLAccountInCompanyCode.GLAccount end end as GLAccountExternal AS GLAccountendendasGLAccountExternal,
  ChartOfAccounts.CorporateGroupChartOfAccounts AS CorporateGroupChartOfAccounts,
  CorporateGroupAccount.CorporateGroupAccount AS CorporateGroupAccount
INNER JOIN I_CompanyCode ON /* join condition not captured in parsed metadata */
INNER JOIN I_FinancialStatementHier AS FSVERSION ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_GLAccountInChartOfAccounts AS CorporateGroupAccount ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_ChartOfAccounts ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_GlAccountTextInCompanycode AS _Text ON CompanyCode = _Text.CompanyCode AND GLAccount = _Text.GLAccount  -- association [0..*]
;