swb_i_wvobjecttypes

DDL: SWB_I_WVOBJECTTYPES SQL: SWB_I_WVOBJTYPES Type: view

CDS for WB object types

swb_i_wvobjecttypes is a CDS View that provides data about "CDS for WB object types" in SAP S/4HANA. It reads from 2 data sources (e071, wvobjecttypes) and exposes 13 fields with key fields Objecttype, Active_Inactive_Version. It has 3 associations to related views.

Data Sources (2)

SourceAliasJoin Type
e071 Transports left_outer
wvobjecttypes WVTypes from

Associations (3)

CardinalityTargetAliasCondition
[0..*] swb_i_objtypegroups _ObjectTypeGroups $projection.objtype_group = _ObjectTypeGroups.Objecttypegroup
[0..*] swb_i_wvobjtypes_scope _WVScopes
[0..*] swb_i_wvobjecttypes_t _WVTexts

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName SWB_I_WVOBJTYPES view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS for WB object types view
Metadata.allowExtensions true view
Search.searchable true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY Objecttype objecttype Type
KEY Active_Inactive_Version ai_version Program Status
ename ename User Name
edate edate To-Date
etime etime TIME Data Element for SYST
uname uname User Name
udate udate Update Date
utime utime Time
TimeStamp
TransportRequest e071 trkorr Virtual Transport
_WVScopes _WVScopes
_WVTexts _WVTexts
_ObjectTypeGroups _ObjectTypeGroups

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 swb_i_wvobjecttypes.
-- 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: SWB_I_WVOBJTYPES

CREATE VIEW swb_i_wvobjecttypes AS
SELECT
  Objecttype,
  ai_version AS Active_Inactive_Version,
  ename,
  edate,
  etime,
  uname,
  udate,
  utime,
  concat(udate, utime) AS TimeStamp,
  Transports.trkorr AS TransportRequest
FROM wvobjecttypes AS WVTypes
LEFT OUTER JOIN e071 AS Transports ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN swb_i_objtypegroups AS _ObjectTypeGroups ON objtype_group = _ObjectTypeGroups.Objecttypegroup  -- association [0..*]
LEFT OUTER JOIN swb_i_wvobjtypes_scope AS _WVScopes ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN swb_i_wvobjecttypes_t AS _WVTexts ON /* condition not available in parsed metadata */  -- association [0..*]
;