P_CN_CADEGLLeafItemAccount2

DDL: P_CN_CADEGLLEAFITEMACCOUNT2 SQL: PCADEGLLEFITACT2 Type: view COMPOSITE

P_CN_CADEGLLeafItemAccount2 is a Composite CDS View in SAP S/4HANA. It reads from 7 data sources and exposes 18 fields with key fields CompanyCode, FinancialStatementVariant, ChartOfAccounts, FinancialStatementItem, GLAccount.

Data Sources (7)

SourceAliasJoin Type
I_CN_CADEFinancialStatementItm FinancialStatementItem left_outer
I_FinancialStatementVersion FinancialStatementVersion inner
I_CN_CADEFinStatementLeafItem FinStmntLeafItem left_outer
I_GLAccountInChartOfAccounts GLAccount from
I_GLAccountInCompanyCode GLAccountInCompanyCode left_outer
P_CN_CADEGLAcctWDesc2 P_CN_CADEGLAcctWDesc2 left_outer
P_CN_CADEGLAcctWDesc2 P_CN_CADEGLAcctWDesc2 left_outer

Parameters (3)

NameTypeDefault
P_CompanyCode bukrs
P_FinancialStatementVariant versn_011
P_Language sylangu

Annotations (10)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName PCADEGLLEFITACT2 view
VDM.private true view
VDM.viewType #COMPOSITE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode
KEY FinancialStatementVariant I_FinancialStatementVersion FinancialStatementVariant Version
KEY ChartOfAccounts I_FinancialStatementVersion ChartOfAccounts Node Class
KEY FinancialStatementItem I_CN_CADEFinStatementLeafItem FinancialStatementItem FS Item
KEY GLAccount I_GLAccountInChartOfAccounts GLAccount General Ledger
GLAccountType I_GLAccountInChartOfAccounts GLAccountType G/L Account Type
ReconciliationAccountType I_GLAccountInCompanyCode ReconciliationAccountType Reconcil. ID
char1endasIsFinancialStatementItem
GLAccountName GLAccountWDesc GLAccountName Short Text
GLAccountGroup GLAccountWDesc GLAccountGroup Account Group
GLAccountGroupName GLAccountWDesc GLAccountGroupName
AlternativeGLAccount I_GLAccountInCompanyCode AlternativeGLAccount Group Account
AlternativeGLAccountName GLAccountWDesc2 GLAccountName Short Text
AlternativeGLAccountGroup GLAccountWDesc2 GLAccountGroup Account Group
AlternativeGLAccountGroupName GLAccountWDesc2 GLAccountGroupName
GLAccountHierarchy
IsDebitBalanceRelevant IsDebitBalanceRelevant Debit Balance
IsCreditBalanceRelevant IsCreditBalanceRelevant Credit Balance

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_CN_CADEGLLeafItemAccount2.
-- 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: PCADEGLLEFITACT2
-- Parameters: P_CompanyCode : bukrs, P_FinancialStatementVariant : versn_011, P_Language : sylangu

CREATE VIEW P_CN_CADEGLLeafItemAccount2 AS
SELECT
  :P_CompanyCode AS CompanyCode,
  FinancialStatementVersion.FinancialStatementVariant AS FinancialStatementVariant,
  FinancialStatementVersion.ChartOfAccounts AS ChartOfAccounts,
  FinStmntLeafItem.FinancialStatementItem AS FinancialStatementItem,
  GLAccount.GLAccount AS GLAccount,
  GLAccount.GLAccountType AS GLAccountType,
  GLAccountInCompanyCode.ReconciliationAccountType AS ReconciliationAccountType,
  case when GLAccountInCompanyCode.GLAccount is null then cast('X' as abap.char( 1 )) end as IsFinancialStatementItem AS char1endasIsFinancialStatementItem,
  GLAccountWDesc.GLAccountName AS GLAccountName,
  GLAccountWDesc.GLAccountGroup AS GLAccountGroup,
  GLAccountWDesc.GLAccountGroupName AS GLAccountGroupName,
  GLAccountInCompanyCode.AlternativeGLAccount AS AlternativeGLAccount,
  GLAccountWDesc2.GLAccountName AS AlternativeGLAccountName,
  GLAccountWDesc2.GLAccountGroup AS AlternativeGLAccountGroup,
  GLAccountWDesc2.GLAccountGroupName AS AlternativeGLAccountGroupName,
  cast(FinancialStatementItem.FinStatementHierarchyLevelVal as abap.int1) AS GLAccountHierarchy,
  IsDebitBalanceRelevant,
  IsCreditBalanceRelevant
FROM I_GLAccountInChartOfAccounts AS GLAccount
INNER JOIN I_FinancialStatementVersion AS FinancialStatementVersion ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_GLAccountInCompanyCode AS GLAccountInCompanyCode ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CN_CADEFinStatementLeafItem AS FinStmntLeafItem ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN P_CN_CADEGLAcctWDesc2 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CN_CADEFinancialStatementItm AS FinancialStatementItem ON /* join condition not captured in parsed metadata */
;