I_ACMSystemStatus
ACM Specific Status
I_ACMSystemStatus is a Basic CDS View that provides data about "ACM Specific Status" in SAP S/4HANA. It reads from 2 data sources (I_SystemStatusText, jest) and exposes 4 fields with key fields ApplicationStatusObject, StatusProfileName.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_SystemStatusText | _StatusText | inner |
| jest | jest | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACMSYSTEMSTATUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| EndUserText.label | ACM Specific Status | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ApplicationStatusObject | objnr | ||
| KEY | StatusProfileName | stat | ||
| ChangeDocumentStatusIsInactive | inact | |||
| SystemStatusName | I_SystemStatusText | SystemStatusName |
/*---------------------------------------------------------------------*
* Copyright 2012 SAP AG. All rights reserved *
*----------------------------------------------------------------------*
* CDS Name : I_ACMSystemStatus *
* CDS Description : Interface View For ACM Specific Status *
* Data with Description *
*---------------------------------------------------------------------*/
@AbapCatalog.sqlViewName: 'IACMSYSTEMSTATUS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #MIXED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE]
@EndUserText.label: 'ACM Specific Status'
define view I_ACMSystemStatus as select from jest
inner join I_SystemStatusText as _StatusText on _StatusText.SystemStatus = stat
and _StatusText.Language = $session.system_language
{
key objnr as ApplicationStatusObject,
key stat as StatusProfileName,
inact as ChangeDocumentStatusIsInactive,
_StatusText.SystemStatusName as SystemStatusName
}
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