P_FINS_REPRESENTIVE_LEDGER
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)
| Source | Alias | Join Type |
|---|---|---|
| fagl_tldgrp_map | fagl_tldgrp_map | from |
| finsc_ledger | finsc_ledger | union |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| ldgrp | ldgrp | |||
| rldnr | rldnr |
@AbapCatalog.sqlViewName: 'PFINSREPLEDER'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter:true
@VDM.private: true
@VDM.viewType: #BASIC
define view P_FINS_REPRESENTIVE_LEDGER
as select from fagl_tldgrp_map
{
ldgrp,
rldnr
}
where
represent = 'X'
union select from finsc_ledger
{
' ' as ldgrp,
rldnr
}
where
xleading = 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FAGL_TLDGRP_MAP",
"FINSC_LEDGER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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