P_FINS_REPRESENTIVE_LEDGER

DDL: P_FINS_REPRESENTIVE_LEDGER SQL: PFINSREPLEDER Type: view BASIC

P_FINS_REPRESENTIVE_LEDGER is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (fagl_tldgrp_map, finsc_ledger) and exposes 2 fields.

Data Sources (2)

SourceAliasJoin Type
fagl_tldgrp_map fagl_tldgrp_map from
finsc_ledger finsc_ledger union

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PFINSREPLEDER view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
VDM.private true view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
ldgrp ldgrp Target Ledger Group
rldnr rldnr Ledger (Compat.)

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 P_FINS_REPRESENTIVE_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: PFINSREPLEDER

CREATE VIEW P_FINS_REPRESENTIVE_LEDGER AS
SELECT
  ldgrp,
  rldnr
FROM fagl_tldgrp_map
-- UNION with additional select branch(es): finsc_ledger
;