I_SAFTProductVersion

DDL: I_SAFTPRODUCTVERSION SQL: ISAFTPRDVERS Type: view BASIC

SAF-T Installed Product Version

I_SAFTProductVersion is a Basic CDS View that provides data about "SAF-T Installed Product Version" in SAP S/4HANA. It reads from 1 data source (prdvers) and exposes 4 fields with key field ObjectName.

Data Sources (1)

SourceAliasJoin Type
prdvers v from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISAFTPRDVERS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label SAF-T Installed Product Version view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ObjectName prdvers name Zone name
EmbeddedSwVersionStatusDesc prdvers descript Title
versionasEmbeddedSwVersionDescription
Version

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_SAFTProductVersion.
-- 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: ISAFTPRDVERS

CREATE VIEW I_SAFTProductVersion AS
SELECT
  v.name AS ObjectName,
  v.descript AS EmbeddedSwVersionStatusDesc,
  rtrim(replace( replace( replace( replace(v.descript, 'SAP', ''), 'S/4HANA', ''), 'CLOUD', '' ), v.version, ''), ' ') as EmbeddedSwVersionDescription AS versionasEmbeddedSwVersionDescription,
  cast(v.version as vsnmr) AS Version
FROM prdvers AS v
;