FGL_BCF_ALLP10

DDL: FGL_BCF_ALLP10 SQL: FGLV_BCF_ALLP10 Type: view Package: FINS_FI_BCF

PL-items: prev. fiscal year + invert. period 0 bcf-year

FGL_BCF_ALLP10 is a CDS View that provides data about "PL-items: prev. fiscal year + invert. period 0 bcf-year" in SAP S/4HANA. It reads from 4 data sources (psm_d_glacctx, t001, FGL_BCF_PRFYP, FGL_BCF_PER0P). Part of development package FINS_FI_BCF.

Data Sources (4)

SourceAliasJoin Type
psm_d_glacctx ps left_outer
t001 t001 inner
FGL_BCF_PRFYP y inner
FGL_BCF_PER0P y inner

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName FGLV_BCF_ALLP10 view
EndUserText.label PL-items: prev. fiscal year + invert. period 0 bcf-year view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view

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 FGL_BCF_ALLP10.
-- 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: FGLV_BCF_ALLP10

CREATE VIEW FGL_BCF_ALLP10 AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN FGL_BCF_PRFYP AS y ON /* join condition not captured in parsed metadata */
INNER JOIN t001 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN psm_d_glacctx AS ps ON /* join condition not captured in parsed metadata */
INNER JOIN FGL_BCF_PER0P AS y ON /* join condition not captured in parsed metadata */
;