FGL_BCF_PLACC
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)
| Source | Alias | Join Type |
|---|---|---|
| FGL_BCF_REACC | FGL_BCF_REACC | inner |
| ska1 | ska1 | inner |
| skb1 | skb1 | inner |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@AbapCatalog.sqlViewName: 'FGLV_BCF_PLACC'
@EndUserText.label: 'All P&L Accounts for Balance Carryforward'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
define view FGL_BCF_PLACC
--P&L accounts and fixed BS-accounts which are treated as P&L accounts
as select distinct
key t001.mandt, key t001.bukrs, key ska1.saknr as racct, t001.ktopl ,ska1.xbilk, ska1.gvtyp, '' as fixacct, FGL_BCF_REACC.vtkon
from t001 inner join ska1 on ska1.ktopl = t001.ktopl
inner join skb1 on skb1.bukrs = t001.bukrs
and skb1.saknr = ska1.saknr
inner join FGL_BCF_REACC on FGL_BCF_REACC.bukrs = t001.bukrs
and FGL_BCF_REACC.ktopl = t001.ktopl
and FGL_BCF_REACC.gvtyp = ska1.gvtyp
where ska1.xbilk = '' and ska1.gvtyp <> ''
union all
select
key mandt, key bukrs, key vtkon as racct, ktopl , 'X' as xbilk, '' as gvtyp, 'X' as fixacct, vtkon
from FGL_BCF_BSACCF
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FGL_BCF_BSACCF",
"FGL_BCF_REACC",
"SKA1",
"SKB1",
"T001"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA