I_VersionStatus
Version Status view
I_VersionStatus is a Basic CDS View that provides data about "Version Status view" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields BOMVersionStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IVERSNSTATUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Version Status view | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | BOMVersionStatus | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| Search.searchable | true | view |
@AbapCatalog.sqlViewName: 'IVERSNSTATUS'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm : #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Version Status view'
@ObjectModel.dataCategory:#TEXT
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'BOMVersionStatus'
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #CUSTOMIZING}
@ObjectModel.resultSet.sizeCategory: #XS
@Search.searchable: true
define view I_VersionStatus
as select from dd07t
{
@ObjectModel.text.element: 'BOMVersionStatusDescription'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
key dd07t.domvalue_l as BOMVersionStatus,
@Semantics.language: true
@UI.hidden
key dd07t.ddlanguage as Language,
@Semantics.text: true
dd07t.ddtext as BOMVersionStatusDescription
}
where
dd07t.domname = 'CS_VERSNST'
and dd07t.ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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