I_ACMStorageStatus
Storage statuses for ACM
I_ACMStorageStatus is a Basic CDS View that provides data about "Storage statuses for ACM" in SAP S/4HANA. It reads from 2 data sources (I_SystemStatusText, jest) and exposes 4 fields with key fields ACMStorageStatusObject, StatusProfileName.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_SystemStatusText | _StatusText | inner |
| jest | jest | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Storage statuses for ACM | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ACMStorageStatusObject | jest | objnr | |
| KEY | StatusProfileName | jest | stat | |
| ChangeDocumentStatusIsInactive | jest | inact | ||
| ACMStorageStatusText | I_SystemStatusText | SystemStatusName |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Storage statuses for ACM'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@VDM.viewType: #BASIC
define view entity I_ACMStorageStatus
as select from jest
inner join I_SystemStatusText as _StatusText on _StatusText.SystemStatus = jest.stat
and _StatusText.Language = $session.system_language
{
key jest.objnr as ACMStorageStatusObject,
key jest.stat as StatusProfileName,
@Semantics.booleanIndicator: true
jest.inact as ChangeDocumentStatusIsInactive,
_StatusText.SystemStatusName as ACMStorageStatusText
}
where
(
jest.stat = 'I7S11'
or jest.stat = 'I7S01'
or jest.stat = 'I7S12'
or jest.stat = 'I7S13'
or jest.stat = 'I7S14'
)
and jest.inact is initial
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