C_MaintenanceObjectStatus
Maintenance Object Status
C_MaintenanceObjectStatus is a Consumption CDS View that provides data about "Maintenance Object Status" in SAP S/4HANA. It reads from 1 data source (I_StsObjActiveStsInLogonLang) and exposes 8 fields with key fields StatusObject, StatusCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_StsObjActiveStsInLogonLang | I_StsObjActiveStsInLogonLang | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CMAINTOBJSTS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Maintenance Object Status | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatusObject | StatusObject | ||
| KEY | StatusCode | StatusCode | ||
| StatusName | _ObjectStatus | StatusName | Text | |
| StatusShortName | _ObjectStatus | StatusShortName | Status | |
| StatusProfile | _ObjectStatus | StatusProfile | ||
| StatusProfileName | _ObjectStatus | StatusProfileName | Status Profile Name | |
| IsUserStatus | _ObjectStatus | IsUserStatus | Is User Status | |
| StatusSequenceNumber |
@AbapCatalog.sqlViewName: 'CMAINTOBJSTS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Maintenance Object Status'
@ObjectModel: {
usageType.serviceQuality: #D,
usageType.sizeCategory: #XL,
usageType.dataClass: #MIXED
}
@VDM.viewType: #CONSUMPTION
define view C_MaintenanceObjectStatus
as select from I_StsObjActiveStsInLogonLang( P_Language: $session.system_language ) as _ObjectStatus
{
@UI.hidden: true
key StatusObject,
@UI.hidden: true
key StatusCode,
@UI: {
identification:{importance: #HIGH, position: 30},
lineItem:{importance: #HIGH, position: 20}
}
@EndUserText.label: 'Text'
@Semantics.text: true
_ObjectStatus.StatusName,
@UI: {
identification:{importance: #HIGH,position: 20},
lineItem:{importance: #HIGH, position: 10}
}
@EndUserText.label: 'Status'
@Semantics.text: true
_ObjectStatus.StatusShortName,
@ObjectModel.text.element: [ 'StatusProfileName' ]
@UI.hidden: true
_ObjectStatus.StatusProfile,
@EndUserText.label: 'Status Profile Name'
@UI.hidden: true
_ObjectStatus.StatusProfileName,
@Consumption.filter.hidden: true
@EndUserText.label: 'Is User Status'
@UI.hidden: true
_ObjectStatus.IsUserStatus,
@UI.hidden: true
_ObjectStatus._StatusCode.StatusSequenceNumber
} where _ObjectStatus.StatusIsHidden = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_STATUSCODE",
"I_STSOBJACTIVESTSINLOGONLANG"
],
"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