I_QtnLifecycleStatusText
Quotation Lifecycle Status – Text
I_QtnLifecycleStatusText is a Basic CDS View that provides data about "Quotation Lifecycle Status – Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields QtnLifecycleStatus, Language. It has 1 association to related views. Part of development package VDM_MM_PUR_QTN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | QTNLifecycleStatus | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Quotation Lifecycle Status – Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IQTNLIFESTSTEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #NONE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | QtnLifecycleStatus | |||
| KEY | Language | ddlanguage | ||
| QtnLifecycleStatusName | ||||
| _Language | _Language |
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'QTNLifecycleStatus'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Quotation Lifecycle Status – Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IQTNLIFESTSTEXT'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities:[ #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.modelingPattern: #NONE
define view I_QtnLifecycleStatusText
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
// association [1..1] to I_DomainGlobalFieldName as _DomainGlobalFieldName
// on $projection.DomainGlobalFieldName = _DomainGlobalFieldName.DomainGlobalFieldName
{
key cast ( substring( domvalue_l, 1, 2 ) as vdm_qtn_lfst_cd ) as QtnLifecycleStatus,
@Semantics.language
key ddlanguage as Language,
@Semantics.text
cast( ddtext as vdm_qtn_lfst_descr ) as QtnLifecycleStatusName,
// _DomainGlobalFieldName, //decomment only if no problems in analytics
_Language
}
where domname = 'VDM_QTN_LFST_CD'
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