P_Ftr_Fs_Fib_Ds

DDL: P_FTR_FS_FIB_DS Type: view_entity BASIC

P_Ftr_Fs_Fib_Ds is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_FiscalYear, I_GLAccountLineItem) and exposes 17 fields.

Data Sources (2)

SourceAliasJoin Type
I_FiscalYear FiscalYear inner
I_GLAccountLineItem I_GLAccountLineItem from

Parameters (1)

NameTypeDefault
P_KeyDate vdm_v_key_date

Annotations (3)

NameValueLevelField
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (17)

KeyFieldSource TableSource FieldDescription
CompanyCode I_GLAccountLineItem CompanyCode Receiver Company Code
FiscalYear I_GLAccountLineItem FiscalYear G/L Fiscal Year
Ledger I_GLAccountLineItem Ledger Ledger
TransactionDate I_GLAccountLineItem PostingDate Posting Date for GR
GLAccount I_GLAccountLineItem GLAccount General Ledger
HouseBank I_GLAccountLineItem HouseBank House Bank
HouseBankAccount I_GLAccountLineItem HouseBankAccount House Bank Account
AccountingDocumentType I_GLAccountLineItem AccountingDocumentType Journal Entry Type
ChartOfAccounts I_GLAccountLineItem ChartOfAccounts Node Class
BusinessArea I_GLAccountLineItem BusinessArea Business Area
AccountingDocument I_GLAccountLineItem AccountingDocument Journal Entry
WBSElementInternalID I_GLAccountLineItem WBSElementInternalID WBS Internal ID
ProfitCenter I_GLAccountLineItem ProfitCenter Profit Center
CostCenter I_GLAccountLineItem CostCenter Cost Center
FunctionalArea I_GLAccountLineItem FunctionalArea Sendr Fctl Area
Fund I_GLAccountLineItem Fund Sender Fund
GrantID I_GLAccountLineItem GrantID Sender Grant

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_Ftr_Fs_Fib_Ds.
-- 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.
-- Parameters: P_KeyDate : vdm_v_key_date

CREATE VIEW P_Ftr_Fs_Fib_Ds AS
SELECT
  I_GLAccountLineItem.CompanyCode AS CompanyCode,
  I_GLAccountLineItem.FiscalYear AS FiscalYear,
  I_GLAccountLineItem.Ledger AS Ledger,
  I_GLAccountLineItem.PostingDate AS TransactionDate,
  I_GLAccountLineItem.GLAccount AS GLAccount,
  I_GLAccountLineItem.HouseBank AS HouseBank,
  I_GLAccountLineItem.HouseBankAccount AS HouseBankAccount,
  I_GLAccountLineItem.AccountingDocumentType AS AccountingDocumentType,
  I_GLAccountLineItem.ChartOfAccounts AS ChartOfAccounts,
  I_GLAccountLineItem.BusinessArea AS BusinessArea,
  I_GLAccountLineItem.AccountingDocument AS AccountingDocument,
  I_GLAccountLineItem.WBSElementInternalID AS WBSElementInternalID,
  I_GLAccountLineItem.ProfitCenter AS ProfitCenter,
  I_GLAccountLineItem.CostCenter AS CostCenter,
  I_GLAccountLineItem.FunctionalArea AS FunctionalArea,
  I_GLAccountLineItem.Fund AS Fund,
  I_GLAccountLineItem.GrantID AS GrantID
FROM I_GLAccountLineItem
INNER JOIN I_FiscalYear AS FiscalYear ON /* join condition not captured in parsed metadata */
;