I_GLAccountType
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_GLAccountTypeText | _GLAccountTypeText | $projection.GLAccountType = _GLAccountTypeText.GLAccountType |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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'
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