I_LedgerType

DDL: I_LEDGERTYPE SQL: IFILEDGERTYPE Type: view BASIC

Ledger Type

I_LedgerType is a Basic CDS View (Dimension) that provides data about "Ledger Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field LedgerType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_LedgerTypeText _Text $projection.LedgerType = _Text.LedgerType

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IFILEDGERTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Ledger Type view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey LedgerType view
ObjectModel.compositionRoot true view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LedgerType domvalue_l
_Text _Text
@AbapCatalog.sqlViewName: 'IFILEDGERTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Ledger Type'
@ClientHandling.algorithm: #SESSION_VARIABLE


@ObjectModel.representativeKey: 'LedgerType'
@ObjectModel.compositionRoot: true
@Analytics: { 
  dataCategory: #DIMENSION,
  dataExtraction.enabled: true,
  internalName: #LOCAL 
}
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.resultSet: { sizeCategory: #XS }
@ObjectModel.usageType: {
  dataClass: #CUSTOMIZING,
  serviceQuality: #A,
  sizeCategory: #S
}


define view I_LedgerType
as select from
dd07l
association [0..*] to I_LedgerTypeText as _Text on $projection.LedgerType = _Text.LedgerType
{
@ObjectModel.text.association: '_Text'
    key domvalue_l as LedgerType,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]    
    _Text
}
where dd07l.domname = 'FINS_LEDGER_TYPE' and dd07l.as4local = 'A'; 
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_LEDGERTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/