I_LedgerGroupAssignment
Assignment of Ledgers to Ledger Groups
I_LedgerGroupAssignment is a Basic CDS View that provides data about "Assignment of Ledgers to Ledger Groups" in SAP S/4HANA. It reads from 1 data source (fagl_tldgrp_map) and exposes 5 fields with key fields LedgerGroup, Ledger. It has 2 associations to related views. Part of development package FINS_LEDGER_GROUP_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fagl_tldgrp_map | fagl_tldgrp_map | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | I_LedgerGroup | _LedgerGroup | $projection.LedgerGroup = _LedgerGroup.LedgerGroup |
| [1] | I_Ledger | _Ledger | $projection.Ledger = _Ledger.Ledger |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFILDGRPASSGMT | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Assignment of Ledgers to Ledger Groups | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LedgerGroup | ldgrp | ||
| KEY | Ledger | rldnr | ||
| IsRepresentativeLedger | represent | |||
| _LedgerGroup | _LedgerGroup | |||
| _Ledger | _Ledger |
@AbapCatalog: {sqlViewName: 'IFILDGRPASSGMT', preserveKey: true}
@EndUserText.label: 'Assignment of Ledgers to Ledger Groups'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view I_LedgerGroupAssignment
as select from fagl_tldgrp_map
association [1] to I_LedgerGroup as _LedgerGroup on $projection.LedgerGroup = _LedgerGroup.LedgerGroup
association [1] to I_Ledger as _Ledger on $projection.Ledger = _Ledger.Ledger
{
@ObjectModel.foreignKey.association: '_LedgerGroup'
key ldgrp as LedgerGroup,
@ObjectModel.foreignKey.association: '_Ledger'
key rldnr as Ledger,
represent as IsRepresentativeLedger,
_LedgerGroup,
_Ledger
}
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