I_LedgerGroupAssignment

DDL: I_LEDGERGROUPASSIGNMENT Type: view BASIC Package: FINS_LEDGER_GROUP_VDM

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)

SourceAliasJoin Type
fagl_tldgrp_map fagl_tldgrp_map from

Associations (2)

CardinalityTargetAliasCondition
[1] I_LedgerGroup _LedgerGroup $projection.LedgerGroup = _LedgerGroup.LedgerGroup
[1] I_Ledger _Ledger $projection.Ledger = _Ledger.Ledger

Annotations (10)

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

KeyFieldSource TableSource FieldDescription
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
}