I_ACMSystemUserChangeObjSts
Change object status details
I_ACMSystemUserChangeObjSts is a Basic CDS View that provides data about "Change object status details" in SAP S/4HANA. It reads from 1 data source (jcds) and exposes 6 fields with key fields StatusObject, StatusCode, ChangeDocChangeNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| jcds | status | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICHNGOBJSTAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | StatusCode | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| EndUserText.label | Change object status details | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatusObject | objnr | ||
| KEY | StatusCode | stat | ||
| KEY | ChangeDocChangeNumber | chgnr | ||
| ChangeDocumentStatusDate | udate | |||
| ChangeDocumentStatusTime | utime | |||
| StatusIsInactive | inact |
@AbapCatalog.sqlViewName: 'ICHNGOBJSTAT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@Analytics : { dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'StatusCode'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL
@EndUserText.label: 'Change object status details'
define view I_ACMSystemUserChangeObjSts
as select from jcds as status
{
key objnr as StatusObject,
key stat as StatusCode,
key chgnr as ChangeDocChangeNumber,
udate as ChangeDocumentStatusDate,
utime as ChangeDocumentStatusTime,
inact as StatusIsInactive
}
where inact = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"JCDS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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