I_GLRecordType

DDL: I_GLRECORDTYPE SQL: IFIGLRECORDTYPE Type: view BASIC

General Ledger Record Type

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

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_GLRecordTypeText _Text $projection.GLRecordType = _Text.GLRecordType

Annotations (17)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label General Ledger Record Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIGLRECORDTYPE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey GLRecordType view
ObjectModel.sapObjectNodeType.name GeneralLedgerRecordType view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY GLRecordType
_Text _Text
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'General Ledger Record Type'
@Analytics: {dataCategory: #DIMENSION, dataExtraction.enabled: true}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIGLRECORDTYPE'

@AccessControl.authorizationCheck: #NOT_REQUIRED   // #CHECK 

// @VDM.dclSourceNotRequired:true

@ObjectModel: {representativeKey: 'GLRecordType', 
               sapObjectNodeType.name: 'GeneralLedgerRecordType', 
               modelingPattern: #ANALYTICAL_DIMENSION,
               supportedCapabilities: [#ANALYTICAL_DIMENSION, 
                                     #CDS_MODELING_ASSOCIATION_TARGET, 
                                     #CDS_MODELING_DATA_SOURCE,
                                     #EXTRACTION_DATA_SOURCE,
                                     #SQL_DATA_SOURCE],
               usageType: { sizeCategory: #S,
                            dataClass:  #MASTER,
                            serviceQuality: #A }
               }
@ClientHandling.algorithm: #SESSION_VARIABLE
//@AbapCatalog.buffering.status: #ACTIVE          (in moment not possible to activate because of ClientHandling.algorithm: #SESSION_VARIABLE

//@AbapCatalog.buffering.type: #GENERIC

//@AbapCatalog.buffering.numberOfKeyFields: 1

@Metadata.ignorePropagatedAnnotations: true
//@Search.searchable: true  // not possible if field is cast to the correct data element. View is not CONTAINS compatible



                                     
define view I_GLRecordType as select from dd07l
association [0..*] to I_GLRecordTypeText as _Text on $projection.GLRecordType = _Text.GLRecordType
{
  @ObjectModel.text.association: '_Text'
//  @Search.defaultSearchElement: true

//  @Search.fuzzinessThreshold: 0.8      

  key cast( substring(domvalue_l, 1, 1) as rrcty ) as GLRecordType,
  _Text
}
where dd07l.domname = 'RRCTY'; 

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_GLRECORDTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/