I_ConnectedSystemStatus

DDL: I_CONNECTEDSYSTEMSTATUS SQL: ICONSYSTSTS Type: view BASIC

Connected System Status

I_ConnectedSystemStatus is a Basic CDS View that provides data about "Connected System Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field char1asProcmtHubSourceSystemStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ConnectedSystemStatusTxt _Text $projection.DomainValue = _Text.DomainValue

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICONSYSTSTS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Connected System Status view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ProcmtHubSourceSystemStatus view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY char1asProcmtHubSourceSystemStatus
DomainValue dd07l domvalue_l Lower Value
SystemStatusName _Text SystemStatusName System Status

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_ConnectedSystemStatus.
-- 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: ICONSYSTSTS

CREATE VIEW I_ConnectedSystemStatus AS
SELECT
  cast( case when dd07l.domvalue_l = 'X' then '2' else '1' end as abap.char(1)) as ProcmtHubSourceSystemStatus AS char1asProcmtHubSourceSystemStatus,
  dd07l.domvalue_l AS DomainValue,
  _Text.SystemStatusName AS SystemStatusName
FROM dd07l
LEFT OUTER JOIN I_ConnectedSystemStatusTxt AS _Text ON DomainValue = _Text.DomainValue  -- association [1..1]
;