FGL_BCF_TECH_LEDGER

CDS View

Technical Ledger for BCF

FGL_BCF_TECH_LEDGER is a CDS View in S/4HANA. Technical Ledger for BCF. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
FGL_BCF_BS view inner Balance Carry Forward: Balance Sheet
FGL_BCF_PL view inner Balance Carry Forward: Profit and Loss
@AbapCatalog.sqlViewName: 'FGLV_BCF_TECH'
@EndUserText.label: 'Technical Ledger for BCF'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
@AbapCatalog.compiler.compareFilter: true

define view FGL_BCF_TECH_LEDGER
-- Consider Tech ledger
as select coalesce( l.rldnr, t.rldnr) as rldnr , t.tech_ledger 
  from finsc_ledger as l 
  left outer join fins_tech_ledger as t on l.rldnr = t.rldnr;