I_StatusObjectStatusChange

DDL: I_STATUSOBJECTSTATUSCHANGE SQL: ISTATUSOBJSTSCHG Type: view BASIC Package: VDM_FND

Change Docs for System or User Status

I_StatusObjectStatusChange (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_StatusObjectStatusChange is a Basic CDS View (Fact) that provides data about "Change Docs for System or User Status" in SAP S/4HANA. It reads from 1 data source (jcds) and exposes 9 fields with key fields StatusObject, StatusCode, StatusObjectStatusChangeNumber. Part of development package VDM_FND.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentCA-GTF-VDM
CapabilitiesData Source for Data Extraction,Data Source in SQL Select,Data Source for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
jcds jcds from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ISTATUSOBJSTSCHG view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.status #NOT_ALLOWED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Change Docs for System or User Status view
Analytics.dataCategory #FACT view
Analytics.dataExtraction.enabled true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY StatusObject objnr Val. Obj. No.
KEY StatusCode stat Status of Time-Dependent Document Linkage
KEY StatusObjectStatusChangeNumber chgnr Change Number
LastChangedByUser usnam User Name of Person Making Change in Change Document
LastChangeDate udate Creation Date of Change Document
LastChangeTime utime Time of Change
ChangeTransactionCode cdtcode Transaction in which a change was made
StatusIsInactive inact Indicator: Status Is Inactive
StatusChangeOperationCode chind Change Indicator

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_StatusObjectStatusChange.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ISTATUSOBJSTSCHG

CREATE VIEW I_StatusObjectStatusChange AS
SELECT
  objnr AS StatusObject,
  stat AS StatusCode,
  chgnr AS StatusObjectStatusChangeNumber,
  usnam AS LastChangedByUser,
  udate AS LastChangeDate,
  utime AS LastChangeTime,
  cdtcode AS ChangeTransactionCode,
  inact AS StatusIsInactive,
  chind AS StatusChangeOperationCode
FROM jcds
;