FAA_CFG_LEDGER

CDS View

Configuration of Ledger, Account. Principle and Ledgergroup

FAA_CFG_LEDGER is a CDS View in S/4HANA. Configuration of Ledger, Account. Principle and Ledgergroup. It contains 3 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
FAA_LEDGER view inner Ledger with FAA persistency (including tech Ledger)

Fields (3)

KeyField CDS FieldsUsed in Views
KEY ledger ledger 1
KEY tech_ledger ledger 1
acc_principle acc_principle 1
@AbapCatalog.sqlViewName: 'FAAV_CFG_LEDGER'
@ClientHandling.algorithm: #SESSION_VARIABLE
--@VDM.private: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@AbapCatalog.buffering.status: #ACTIVE
--@AbapCatalog.buffering.type: #FULL
@AbapCatalog.buffering.type: #GENERIC
@AbapCatalog.buffering.numberOfKeyFields: 2
@AbapCatalog.preserveKey: true
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Configuration of Ledger, Account. Principle and Ledgergroup'

define view FAA_CFG_LEDGER as

  select from       finsc_ld_cmp    as ld_cmp

    inner join      fins_tech_ledger    as ledger      on ledger.rldnr               = ld_cmp.rldnr
    
   {
   key ld_cmp.bukrs               as comp_code,
   key ledger.rldnr               as ledger,           
       ledger.tech_ledger         as tech_ledger,
       ld_cmp.acc_principle       as acc_principle
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FINSC_LD_CMP",
"FINS_TECH_LEDGER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/