I_SystemUserChangeDocuments
Change Document for System User Status
I_SystemUserChangeDocuments is a Basic CDS View that provides data about "Change Document for System User Status" in SAP S/4HANA. It reads from 1 data source (jcds) and exposes 9 fields with key fields ApplicationStatusObject, ApplicationStatus, ChangeNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| jcds | jcds | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDGRSYSSTATUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Change Document for System User Status | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.supportedCapabilities | #CDS_MODELING_DATA_SOURCE | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ApplicationStatusObject | objnr | ||
| KEY | ApplicationStatus | stat | ||
| KEY | ChangeNumber | chgnr | ||
| ChangeDocumentStatusDate | udate | |||
| ChangeDocumentStatusTime | utime | |||
| TransactionCode | tcode | |||
| ChangeTransactionCode | cdtcode | |||
| ChangeDocumentStatusIsInactive | inact | |||
| ChangeIndicator | chind |
@AbapCatalog.sqlViewName: 'IDGRSYSSTATUS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType:#BASIC
@EndUserText.label: 'Change Document for System User Status'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XXL
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities : #CDS_MODELING_DATA_SOURCE
define view I_SystemUserChangeDocuments
as select from jcds
{
key objnr as ApplicationStatusObject,
key stat as ApplicationStatus,
key chgnr as ChangeNumber,
udate as ChangeDocumentStatusDate,
utime as ChangeDocumentStatusTime,
cast(DATS_TIMS_TO_TSTMP( udate,
utime,
abap_system_timezone( $session.client,'NULL' ),
$session.client,
'NULL' ) as cds_dgr_statustimestamp) as ChangeDocumentStatusDateTime,
tcode as TransactionCode,
cdtcode as ChangeTransactionCode,
inact as ChangeDocumentStatusIsInactive,
chind as ChangeIndicator
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"JCDS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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