I_GLAccountType

DDL: I_GLACCOUNTTYPE SQL: IGLACCTYPE Type: view BASIC

General Ledger Account Type

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

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_GLAccountTypeText _GLAccountTypeText $projection.GLAccountType = _GLAccountTypeText.GLAccountType

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IGLACCTYPE view
EndUserText.label General Ledger Account Type view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.representativeKey GLAccountType view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.sapObjectNodeType.name GeneralLedgerAccountType view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY GLAccountType
DomainValue dd07l domvalue_l
_GLAccountTypeText _GLAccountTypeText
@AbapCatalog.sqlViewName: 'IGLACCTYPE'
@EndUserText.label: 'General Ledger Account Type'
@Analytics: { 
  dataCategory: #DIMENSION
  //dataExtraction.enabled: true 

}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.buffering.status: #NOT_ALLOWED
@ObjectModel: {representativeKey: 'GLAccountType', 
               dataCategory: #VALUE_HELP,
               sapObjectNodeType.name: 'GeneralLedgerAccountType', 
               modelingPattern: #ANALYTICAL_DIMENSION,
               supportedCapabilities:[#CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #ANALYTICAL_DIMENSION, #VALUE_HELP_PROVIDER ],
               usageType: {
                            dataClass: #MASTER,
                            serviceQuality: #B,
                            sizeCategory: #M
                           }
              } 
  
@Search.searchable: true
@Consumption.ranked: true
define view I_GLAccountType
  as select from dd07l
  association [0..*] to I_GLAccountTypeText as _GLAccountTypeText on $projection.GLAccountType = _GLAccountTypeText.GLAccountType
{
      @ObjectModel.text.association: '_GLAccountTypeText'
  key cast(domvalue_l as glaccount_type) as GLAccountType,
      @Analytics.hidden: true
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      dd07l.domvalue_l as DomainValue,
      @ObjectModel.association.boundFields.dataMatchesSourceAndTargetTypes: true
      _GLAccountTypeText
      
}
where
      domname  = 'GLACCOUNT_TYPE'
  and as4local = 'A'