I_LedgerGroup

DDL: I_LEDGERGROUP SQL: IFILEDGERGROUP Type: view BASIC

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)

SourceAliasJoin Type
fagl_tldgrp fagl_tldgrp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_LedgerGroupText _Text $projection.LedgerGroup = _Text.LedgerGroup

Annotations (14)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/