P_LU_SAFT_SUPPLIERACCTBALMOV

DDL: P_LU_SAFT_SUPPLIERACCTBALMOV SQL: PLUSAFSUPACBMOV Type: view COMPOSITE Package: GLO_FIN_IS_SAFT_LU

SAFT LU - Supplier and GL Account Balance Mov

P_LU_SAFT_SUPPLIERACCTBALMOV is a Composite CDS View that provides data about "SAFT LU - Supplier and GL Account Balance Mov" in SAP S/4HANA. It reads from 1 data source (I_GLAccountYearToDateBalanceC) and exposes 9 fields with key fields Ledger, CompanyCode, GLAccount, Supplier, ChartOfAccounts. Part of development package GLO_FIN_IS_SAFT_LU.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountYearToDateBalanceC I_GLAccountYearToDateBalanceC from

Parameters (2)

NameTypeDefault
P_FromPostingDate dats
P_ToPostingDate dats

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PLUSAFSUPACBMOV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Ledger Ledger Ledger
KEY CompanyCode CompanyCode Receiver Company Code
KEY GLAccount GLAccount General Ledger
KEY Supplier Supplier Supplier
KEY ChartOfAccounts ChartOfAccounts Node Class
KEY FiscalYear LedgerFiscalYear
CompanyCodeCurrency CompanyCodeCurrency Local Currency
CreditAmountInCoCodeCrcy
DebitAmountInCoCodeCrcy

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_LU_SAFT_SUPPLIERACCTBALMOV.
-- 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: PLUSAFSUPACBMOV
-- Parameters: P_FromPostingDate : dats, P_ToPostingDate : dats

CREATE VIEW P_LU_SAFT_SUPPLIERACCTBALMOV AS
SELECT
  Ledger,
  CompanyCode,
  GLAccount,
  Supplier,
  ChartOfAccounts,
  LedgerFiscalYear AS FiscalYear,
  CompanyCodeCurrency,
  sum(CreditAmountInCoCodeCrcy) AS CreditAmountInCoCodeCrcy,
  sum(DebitAmountInCoCodeCrcy) AS DebitAmountInCoCodeCrcy
FROM I_GLAccountYearToDateBalanceC
;