I_DfsScenarioSystemStatus
Interface View for Scenario Status
I_DfsScenarioSystemStatus is a Basic CDS View that provides data about "Interface View for Scenario Status" in SAP S/4HANA. It reads from 2 data sources (I_SystemStatusText, tj05) and exposes 6 fields with key fields SystemStatus, Language.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_SystemStatusText | _DfsScenarioSystemStatus | from |
| tj05 | _Mapping | inner |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDFSSCNSYSTATUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Interface View for Scenario Status | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemStatus | SystemStatus | ||
| KEY | Language | Language | ||
| SystemStatusName | SystemStatusName | System Status Description | ||
| SystemStatusShortName | SystemStatusShortName | System Status | ||
| _SystemStatus | _SystemStatus | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IDFSSCNSYSTATUS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Interface View for Scenario Status'
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@Search.searchable: true
@ObjectModel.usageType: { dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #L }
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_DfsScenarioSystemStatus
as select from I_SystemStatusText as _DfsScenarioSystemStatus
inner join tj05 as _Mapping on _DfsScenarioSystemStatus.SystemStatusShortName = _Mapping.vrgng
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key SystemStatus,
@Semantics.text: true
key Language,
@Semantics.text: true
@EndUserText.label: 'System Status Description'
SystemStatusName,
@Consumption.filter.hidden: true
@Semantics.text: true
@EndUserText.label: 'System Status'
SystemStatusShortName,
// Associations
_SystemStatus,
_Language
}
where
Language = $session.system_language
and obtyp = 'SCN'
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