FAA_CFG_LEDGER
Configuration of Ledger, Account. Principle and Ledgergroup
FAA_CFG_LEDGER is a CDS View that provides data about "Configuration of Ledger, Account. Principle and Ledgergroup" in SAP S/4HANA. It reads from 2 data sources (finsc_ld_cmp, fins_tech_ledger) and exposes 3 fields with key fields comp_code, ledger.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| finsc_ld_cmp | ld_cmp | from |
| fins_tech_ledger | ledger | inner |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FAAV_CFG_LEDGER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.private | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 2 | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Configuration of Ledger, Account. Principle and Ledgergroup | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | comp_code | finsc_ld_cmp | bukrs | |
| KEY | ledger | fins_tech_ledger | rldnr | |
| tech_ledger | fins_tech_ledger | tech_ledger |
@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
}
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