I_LedgerGroup
Ledger Group
I_LedgerGroup is a Basic CDS View (Dimension) that provides data about "Ledger Group" in SAP S/4HANA. It reads from 1 data source (fagl_tldgrp) and exposes 2 fields with key field LedgerGroup. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fagl_tldgrp | fagl_tldgrp | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_LedgerGroupText | _Text | $projection.LedgerGroup = _Text.LedgerGroup |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Ledger Group | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IFILEDGERGROUP | view | |
| ObjectModel.representativeKey | LedgerGroup | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| Search.searchable | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LedgerGroup | ldgrp | ||
| _Text | _Text |
@EndUserText.label: 'Ledger Group'
@Analytics: {
dataCategory: #DIMENSION
//dataExtraction.enabled: true
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IFILEDGERGROUP'
@ObjectModel.representativeKey: 'LedgerGroup'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
}
@AbapCatalog.buffering:{
status: #ACTIVE,
type: #FULL
}
@Search.searchable: true
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE]
define view I_LedgerGroup
as select from
fagl_tldgrp
association [0..*] to I_LedgerGroupText as _Text on $projection.LedgerGroup = _Text.LedgerGroup
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key ldgrp as LedgerGroup,
_Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FAGL_TLDGRP"
],
"ASSOCIATED":
[
"I_LEDGERGROUPTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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