I_Mkt_Sr_ModelStatusText
Suppression Rule: Model Status Text
I_Mkt_Sr_ModelStatusText is a Basic CDS View that provides data about "Suppression Rule: Model Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields RuleModelStatus, Language. Part of development package CUAN_CDS_SUPPRESSION_RULE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | ModelStatusText | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Suppression Rule: Model Status Text | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | IMKTSRMODELSTATT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | RuleModelStatus | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RuleModelStatus | |||
| KEY | Language | dd07t | ddlanguage | |
| RuleModelStatusName |
@EndUserText.label: 'Suppression Rule: Model Status Text'
@AbapCatalog: {
compiler.compareFilter: true,
preserveKey: true,
sqlViewName: 'IMKTSRMODELSTATT'
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'RuleModelStatus',
usageType: {
dataClass: #META,
serviceQuality: #B,
sizeCategory: #S
}
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
define view I_Mkt_Sr_ModelStatusText
as select from dd07t as ModelStatusText
{
@ObjectModel.readOnly: true
key cast(ModelStatusText.domvalue_l as cuan_sr_model_status) as RuleModelStatus,
@ObjectModel.readOnly: true
@Semantics.language: true
key ModelStatusText.ddlanguage as Language,
@ObjectModel.readOnly: true
@Semantics.text: true
cast(ModelStatusText.ddtext as cuan_sr_model_status_text preserving type) as RuleModelStatusName
}
where
ModelStatusText.domname = 'CUAN_SR_MODEL_STATUS'
and ModelStatusText.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