I_SystemUserChangeDocuments

DDL: I_SYSTEMUSERCHANGEDOCUMENTS SQL: IDGRSYSSTATUS Type: view BASIC

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)

SourceAliasJoin Type
jcds jcds from

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/