I_GLRecordType

DDL: I_GLRECORDTYPE Type: view_entity BASIC Package: FINS_GL_RECORD_TYPE_VDM

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. Part of development package FINS_GL_RECORD_TYPE_VDM.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

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

Annotations (14)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label General Ledger Record Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.technicalName IFIGLRECORDTYPE view
VDM.viewType #BASIC 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
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY GLRecordType
_Text _Text
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@EndUserText.label: 'General Ledger Record Type'
@Analytics: {dataCategory: #DIMENSION, dataExtraction.enabled: true}
@Analytics.technicalName: 'IFIGLRECORDTYPE'
@VDM.viewType: #BASIC
@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 }
               }
@Metadata.ignorePropagatedAnnotations: true
//@Search.searchable: true  // not possible if field is cast to the correct data element. View is not CONTAINS compatible



                                     
define view entity 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';