I_ACMApplicationDocumentStatus
Application Document Status
I_ACMApplicationDocumentStatus is a Basic CDS View that provides data about "Application Document 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 (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Application Document Status | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ApplicationStatusObject | jest | objnr | |
| KEY | StatusProfileName | jest | stat | |
| ChangeDocumentStatusIsInactive | jest | inact | ||
| SystemStatusName | I_SystemStatusText | SystemStatusName |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Application Document Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #L,
dataClass: #MIXED
}
@VDM.viewType: #BASIC
define view entity I_ACMApplicationDocumentStatus
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 ApplicationStatusObject,
key jest.stat as StatusProfileName,
@Semantics.booleanIndicator: true
jest.inact as ChangeDocumentStatusIsInactive,
_StatusText.SystemStatusName as SystemStatusName
}
where
(
jest.stat = 'I7A01'
or jest.stat = 'I7A02'
or jest.stat = 'I7A03'
or jest.stat = 'I7A04'
or jest.stat = 'I7A05'
or jest.stat = 'I7A06'
or jest.stat = 'I7A08'
or jest.stat = 'I7A12'
or jest.stat = 'I7A13'
or jest.stat = 'I7A14'
or jest.stat = 'I7A15'
or jest.stat = 'I7A20'
or jest.stat = 'I7C01'
or jest.stat = 'I7C02'
or jest.stat = 'I7C03'
or jest.stat = 'I7C04'
or jest.stat = 'I7C05'
or jest.stat = 'I7C07'
or jest.stat = 'I7L01'
or jest.stat = 'I7L02'
or jest.stat = 'I7L03'
or jest.stat = 'I7R01'
or jest.stat = 'I7R02'
or jest.stat = 'I7R03'
or jest.stat = 'I7R04'
or jest.stat = 'I7R05'
)
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