I_GLAccountFlowType
GLAccount Flow Type
I_GLAccountFlowType is a Basic CDS View (Dimension) that provides data about "GLAccount Flow Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field GLAccountFlowType. It has 1 association to related views. Part of development package FINS_GL_ACCOUNT_FLOW_TYPE_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_GLAccountFlowTypeText | _Text | $projection.GLAccountFlowType = _Text.GLAccountFlowType |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | false | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| EndUserText.label | GLAccount Flow Type | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.technicalName | IFIGLACCTFLTP | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | GLAccountFlowType | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.sapObjectNodeType.name | GeneralLedgerAccountFlowType | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GLAccountFlowType | |||
| _Text | _Text |
@AbapCatalog.entityBuffer.definitionAllowed: false
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@EndUserText.label: 'GLAccount Flow Type'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@Analytics.technicalName: 'IFIGLACCTFLTP'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'GLAccountFlowType'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION,
#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SQL_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE]
@ObjectModel.sapObjectNodeType.name: 'GeneralLedgerAccountFlowType'
define view entity I_GLAccountFlowType as select from dd07l
association [0..*] to I_GLAccountFlowTypeText as _Text on $projection.GLAccountFlowType = _Text.GLAccountFlowType
{
@ObjectModel.text.association: '_Text'
key cast( dd07l.domvalue_l as fis_glaccount_flow_type ) as GLAccountFlowType,
_Text
}
where dd07l.domname = 'FIS_GLACCOUNT_FLOW_TYPE' and dd07l.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