P_CN_FinStmntUnassignItemWBal

DDL: P_CN_FINSTMNTUNASSIGNITEMWBAL SQL: PCNFINSTMNTUIBAL Type: view CONSUMPTION

P_CN_FinStmntUnassignItemWBal is a Consumption CDS View in SAP S/4HANA. It reads from 2 data sources (P_CN_FinStmntBalanceSum, P_CN_FinStmntUnassignFSItem) and exposes 14 fields with key fields FinancialStatementVariant, FinancialStatementItem, ChartOfAccounts, GLAccountendasGLAccount, FunctionalAreaendasFunctionalArea.

Data Sources (2)

SourceAliasJoin Type
P_CN_FinStmntBalanceSum P_CN_FinStmntBalanceSum left_outer
P_CN_FinStmntUnassignFSItem P_CN_FinStmntUnassignFSItem from

Parameters (17)

NameTypeDefault
P_Ledger fis_rldnr
P_FromPostingDate fis_budat_from
P_ToPostingDate fis_budat_to
P_FromCurrentDate fis_budat_from
P_FromQuarterDate fis_budat_from
P_ToQuarterDate fis_budat_to
P_ComprnFromPostingDate fis_comprn_budat_from
P_ComprnToPostingDate fis_comprn_budat_to
P_ComprnFromCurrentDate fis_comprn_budat_from
P_FiscalPeriod fins_fiscalperiod
P_ToQuarterFiscalPeriod fins_fiscalperiod
P_CompanyCode fis_bukrs
P_FinStmntFormStruc idcn_fsckey
P_FinancialStatementVariant versn_011
P_CurrencyCode fac_crcyrole
P_LedgerFiscalYear fis_gjahr
P_ChartOfAccounts fis_ktopl

Annotations (6)

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

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY FinancialStatementVariant FinancialStatementVariant
KEY FinancialStatementItem FinancialStatementItem FS Item
KEY ChartOfAccounts l ChartOfAccounts Node Class
KEY GLAccountendasGLAccount
KEY FunctionalAreaendasFunctionalArea
CountryChartOfAccounts CountryChartOfAccounts Chart of Accts
AlternativeGLAccount AlternativeGLAccount Group Account
LedgerFiscalYear r LedgerFiscalYear
IsDebitBalanceRelevant IsDebitBalanceRelevant
IsCreditBalanceRelevant IsCreditBalanceRelevant
ProfitCenter ProfitCenter Profit Center
BusinessArea BusinessArea Business Area
Segment Segment Segment number
CurrencyCode CurrencyCode

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_FinStmntUnassignItemWBal.
-- 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: PCNFINSTMNTUIBAL
-- Parameters: P_Ledger : fis_rldnr, P_FromPostingDate : fis_budat_from, P_ToPostingDate : fis_budat_to, P_FromCurrentDate : fis_budat_from, P_FromQuarterDate : fis_budat_from, P_ToQuarterDate : fis_budat_to, P_ComprnFromPostingDate : fis_comprn_budat_from, P_ComprnToPostingDate : fis_comprn_budat_to, P_ComprnFromCurrentDate : fis_comprn_budat_from, P_FiscalPeriod : fins_fiscalperiod, P_ToQuarterFiscalPeriod : fins_fiscalperiod, P_CompanyCode : fis_bukrs, P_FinStmntFormStruc : idcn_fsckey, P_FinancialStatementVariant : versn_011, P_CurrencyCode : fac_crcyrole, P_LedgerFiscalYear : fis_gjahr, P_ChartOfAccounts : fis_ktopl

CREATE VIEW P_CN_FinStmntUnassignItemWBal AS
SELECT
  FinancialStatementVariant,
  FinancialStatementItem,
  l.ChartOfAccounts AS ChartOfAccounts,
  case when l.GLAccount <> '' then l.GLAccount else r.GLAccount end as GLAccount AS GLAccountendasGLAccount,
  case when l.FunctionalArea <> '' then l.FunctionalArea else r.FunctionalArea end as FunctionalArea AS FunctionalAreaendasFunctionalArea,
  CountryChartOfAccounts,
  AlternativeGLAccount,
  r.LedgerFiscalYear AS LedgerFiscalYear,
  IsDebitBalanceRelevant,
  IsCreditBalanceRelevant,
  ProfitCenter,
  BusinessArea,
  Segment,
  CurrencyCode
FROM P_CN_FinStmntUnassignFSItem
LEFT OUTER JOIN P_CN_FinStmntBalanceSum ON /* join condition not captured in parsed metadata */
;