FGL_BCF_PLACC

DDL: FGL_BCF_PLACC SQL: FGLV_BCF_PLACC Type: view

All P&L Accounts for Balance Carryforward

FGL_BCF_PLACC is a CDS View that provides data about "All P&L Accounts for Balance Carryforward" in SAP S/4HANA. It reads from 3 data sources (FGL_BCF_REACC, ska1, skb1).

Data Sources (3)

SourceAliasJoin Type
FGL_BCF_REACC FGL_BCF_REACC inner
ska1 ska1 inner
skb1 skb1 inner

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName FGLV_BCF_PLACC view
EndUserText.label All P&L Accounts for Balance Carryforward 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_PLACC.
-- 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_PLACC

CREATE VIEW FGL_BCF_PLACC AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN ska1 ON /* join condition not captured in parsed metadata */
INNER JOIN skb1 ON /* join condition not captured in parsed metadata */
INNER JOIN FGL_BCF_REACC ON /* join condition not captured in parsed metadata */
;