I_VersionStatus

DDL: I_VERSIONSTATUS SQL: IVERSNSTATUS Type: view BASIC

Version Status view

I_VersionStatus is a Basic CDS View that provides data about "Version Status view" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields BOMVersionStatus, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IVERSNSTATUS view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Version Status view view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ObjectModel.representativeKey BOMVersionStatus view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BOMVersionStatus dd07t domvalue_l Lower Value
KEY Language dd07t ddlanguage Lang.
BOMVersionStatusDescription dd07t 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_VersionStatus.
-- 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: IVERSNSTATUS

CREATE VIEW I_VersionStatus AS
SELECT
  dd07t.domvalue_l AS BOMVersionStatus,
  dd07t.ddlanguage AS Language,
  dd07t.ddtext AS BOMVersionStatusDescription
FROM dd07t
;