C_IntOrderSystemStatusNameVH

DDL: C_INTORDERSYSTEMSTATUSNAMEVH Type: view CONSUMPTION

Int. order system status name value help

C_IntOrderSystemStatusNameVH is a Consumption CDS View that provides data about "Int. order system status name value help" 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 (16)

NameValueLevelField
AbapCatalog.sqlViewName CIOSYSTSTSNAMEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey SystemStatus view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
EndUserText.label Int. order system status name value help 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 Text

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_IntOrderSystemStatusNameVH.
-- 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_IntOrderSystemStatusNameVH AS
SELECT
  SystemStatus,
  Language,
  SystemStatusShortName,
  cast( SystemStatusName as fco_io_status_text preserving type ) AS SystemStatusName
FROM I_SystemStatusText
;