I_SftyCertProcessingStatusText

DDL: I_SFTYCERTPROCESSINGSTATUSTEXT SQL: ISFTYPROCGSTSTXT Type: view BASIC

Sfty Cert Processing Status - Text

I_SftyCertProcessingStatusText is a Basic CDS View that provides data about "Sfty Cert Processing Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Name, Language, SftyCertProcessingStatus.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISFTYPROCGSTSTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
EndUserText.label Sfty Cert Processing Status - Text view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Name domname Domain
KEY Language ddlanguage Lang.
KEY SftyCertProcessingStatus Lower Value
SftyCertProcessingStatusText ddtext Short 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 I_SftyCertProcessingStatusText.
-- 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: ISFTYPROCGSTSTXT

CREATE VIEW I_SftyCertProcessingStatusText AS
SELECT
  domname AS Name,
  ddlanguage AS Language,
  cast( domvalue_l as ptwdsftycertprocessingstatus ) AS SftyCertProcessingStatus,
  ddtext AS SftyCertProcessingStatusText
FROM dd07t
;