I_LglCntntMVersionText
Version Text
I_LglCntntMVersionText is a Basic CDS View that provides data about "Version Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field LglCntntMVersionTypeCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILCMVERTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | Version Text | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LglCntntMVersionTypeCode | |||
| LglCntntMVersionTypeText | dd07t | ddtext |
@AbapCatalog.sqlViewName: 'ILCMVERTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType : #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Version Text'
define view I_LglCntntMVersionText
// as select from dd07l
// inner join dd07t on dd07t.domname = dd07l.domname
// and dd07t.ddlanguage = $session.system_language
// and dd07t.as4local = dd07l.as4local
// and dd07t.valpos = dd07l.valpos
as select from dd07t
{
//dd07l
key cast( dd07t.domvalue_l as lcm_version_text ) as LglCntntMVersionTypeCode,
dd07t.ddtext as LglCntntMVersionTypeText
}
where
dd07t.domname = 'LCM_VERSION_TEXT'
and dd07t.as4local = 'A'
// ***************************************************
and dd07t.ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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