I_GLRecordType
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_GLRecordTypeText | _Text | $projection.GLRecordType = _Text.GLRecordType |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA