I_SystemStatus

DDL: I_SYSTEMSTATUS SQL: ISYSSTATUS Type: view BASIC

System Status

I_SystemStatus (Basic)

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

Cross Applications

I_SystemStatus is a Basic CDS View (Dimension) that provides data about "System Status" in SAP S/4HANA. It reads from 1 data source (tj02) and exposes 3 fields with key field SystemStatus.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentCA-GTF-VDM
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tj02 tj02 from

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SystemStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.sqlViewName ISYSSTATUS view
AbapCatalog.preserveKey true view
EndUserText.label System Status view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus tj02 istat System status
StatusIsHidden tj02 nodis 'Do not display status' flag
_SystemStatusText _SystemStatusText

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_SystemStatus.
-- 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: ISYSSTATUS

CREATE VIEW I_SystemStatus AS
SELECT
  tj02.istat AS SystemStatus,
  tj02.nodis AS StatusIsHidden
FROM tj02
;