C_FldLogsSystemStatusVH

DDL: C_FLDLOGSSYSTEMSTATUSVH Type: view_entity CONSUMPTION

System Status

C_FldLogsSystemStatusVH is a Consumption CDS View that provides data about "System Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatusText) and exposes 4 fields with key fields SystemStatus, Language.

Data Sources (1)

SourceAliasJoin Type
I_SystemStatusText I_SystemStatusText from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label System Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey SystemStatus view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus SystemStatus System status
KEY Language Language Report Text Language
SystemStatusShortName SystemStatusShortName Status
SystemStatusName SystemStatusName Status Name

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 C_FldLogsSystemStatusVH.
-- 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.

CREATE VIEW C_FldLogsSystemStatusVH AS
SELECT
  SystemStatus,
  Language,
  SystemStatusShortName,
  SystemStatusName
FROM I_SystemStatusText
;