I_DFS_StatusAttributes
System Status
I_DFS_StatusAttributes is a Basic CDS View that provides data about "System Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatus) and exposes 2 fields with key field SystemStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SystemStatus | I_SystemStatus | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDFSSTATATTR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | System Status | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| VDM.viewType | #BASIC | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemStatus | SystemStatus | ||
| _SystemStatusText | _SystemStatusText |
@AbapCatalog.sqlViewName: 'IDFSSTATATTR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'System Status'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@VDM.viewType: #BASIC
define view I_DFS_StatusAttributes
as select from I_SystemStatus
{
key SystemStatus,
case
when( SystemStatus = 'IDFS0') then 2 //planned
when( SystemStatus = 'IDFS1') then 2 //submitted
when( SystemStatus = 'IDFS2') then 2 //approved
when( SystemStatus = 'IDFS3') then 1 //rejected
when( SystemStatus = 'IDFS4') then 3 //active
when( SystemStatus = 'IDFS5') then 1 //deactivated
end as StatusCriticality,
/* Associations */
_SystemStatusText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SYSTEMSTATUS"
],
"ASSOCIATED":
[
"I_SYSTEMSTATUSTEXT"
],
"BASE":
[
"I_SYSTEMSTATUS"
],
"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