Faa_Rep_Ledger

DDL: FAA_REP_LEDGER SQL: FAAV_REP_LEDGER Type: view Package: AB

Intern: Representative Ledger fuer AfA-Bereiche

Faa_Rep_Ledger is a CDS View that provides data about "Intern: Representative Ledger fuer AfA-Bereiche" in SAP S/4HANA. It reads from 1 data source (FAA_CFG_DEPR_AREA) and exposes 7 fields with key fields bukrs, lead_afabe. Part of development package AB.

Data Sources (1)

SourceAliasJoin Type
FAA_CFG_DEPR_AREA cfg_depr_area from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FAAV_REP_LEDGER view
EndUserText.label Intern: Representative Ledger fuer AfA-Bereiche view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #B view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY bukrs FAA_CFG_DEPR_AREA comp_code Procuring Comp. Cde
KEY lead_afabe FAA_CFG_DEPR_AREA depr_area Deprec. Area
afapl FAA_CFG_DEPR_AREA comp_code Procuring Comp. Cde
rep_ledger FAA_CFG_DEPR_AREA ledger Ledger
tech_ledger FAA_CFG_DEPR_AREA tech_ledger Technical Ledger
ldgrp FAA_CFG_DEPR_AREA ldgrp Target Ledger Group
xstore FAA_CFG_DEPR_AREA xstore Real Dep. Area

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 Faa_Rep_Ledger.
-- 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: FAAV_REP_LEDGER

CREATE VIEW Faa_Rep_Ledger AS
SELECT
  cfg_depr_area.comp_code AS bukrs,
  cfg_depr_area.depr_area AS lead_afabe,
  cfg_depr_area.comp_code AS afapl,
  cfg_depr_area.ledger AS rep_ledger,
  cfg_depr_area.tech_ledger AS tech_ledger,
  cfg_depr_area.ldgrp AS ldgrp,
  cfg_depr_area.xstore AS xstore
FROM FAA_CFG_DEPR_AREA AS cfg_depr_area
;