I_SystemStatusText

DDL: I_SYSTEMSTATUSTEXT SQL: ISYSSTATTEXT Type: view BASIC Package: VDM_FND

System Status - Text

I_SystemStatusText (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_SystemStatusText is a Basic CDS View that provides data about "System Status - Text" in SAP S/4HANA. It reads from 1 data source (tj02t) and exposes 6 fields with key fields SystemStatus, Language. It has 1 association to related views. It is exposed through 9 OData services (ASQL_F4657, ASQL_F5414, ASQL_F5989, ...). 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,Language-Dependent Text
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
tj02t tj02t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

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

OData Services (9)

ServiceBindingVersionContractRelease
ASQL_F4657 ASQL_F4657 C2 NOT_RELEASED
ASQL_F5414 ASQL_F5414 C2 NOT_RELEASED
ASQL_F5989 ASQL_F5989 C2 NOT_RELEASED
ASQL_F6740 ASQL_F6740 C2 NOT_RELEASED
ASQL_F6798 ASQL_F6798 C2 NOT_RELEASED
ASQL_F6951 ASQL_F6951 C2 NOT_RELEASED
ASQL_F7263 ASQL_F7263 C2 NOT_RELEASED
ASQL_F7321 ASQL_F7321 C2 NOT_RELEASED
ASQL_F7334 ASQL_F7334 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus tj02t istat System status
KEY Language tj02t spras Off. Language
SystemStatusName tj02t txt30 Individual Status of an Object
SystemStatusShortName tj02t txt04 Individual status of an object (short form)
_SystemStatus _SystemStatus
_Language _Language

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_SystemStatusText.
-- 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: ISYSSTATTEXT

CREATE VIEW I_SystemStatusText AS
SELECT
  tj02t.istat AS SystemStatus,
  tj02t.spras AS Language,
  tj02t.txt30 AS SystemStatusName,
  tj02t.txt04 AS SystemStatusShortName
FROM tj02t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;