I_SystemStatus

DDL: I_SYSTEMSTATUS SQL: ISYSSTATUS Type: view BASIC Package: VDM_FND

System Status

I_SystemStatus (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_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. It is exposed through 4 OData services (ASQL_F4657, ASQL_F6951, ASQL_F7321, ...). 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
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

OData Services (4)

ServiceBindingVersionContractRelease
ASQL_F4657 ASQL_F4657 C2 NOT_RELEASED
ASQL_F6951 ASQL_F6951 C2 NOT_RELEASED
ASQL_F7321 ASQL_F7321 C2 NOT_RELEASED
ASQL_F7334 ASQL_F7334 C2 NOT_RELEASED

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
;