swb_i_objtypegroups

DDL: SWB_I_OBJTYPEGROUPS SQL: SWB_I_OBJTGROUP Type: view

CDS for WB object type groups

swb_i_objtypegroups is a CDS View that provides data about "CDS for WB object type groups" in SAP S/4HANA. It reads from 1 data source (objtypegroups) and exposes 8 fields with key fields Objecttypegroup, Active_Inactive_Version.

Data Sources (1)

SourceAliasJoin Type
objtypegroups objtypegroups from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SWB_I_OBJTGROUP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS for WB object type groups view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Objecttypegroup objtype_group Obj.Type Group
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

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_objtypegroups.
-- 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_OBJTGROUP

CREATE VIEW swb_i_objtypegroups AS
SELECT
  objtype_group AS Objecttypegroup,
  ai_version AS Active_Inactive_Version,
  ename,
  edate,
  etime,
  uname,
  udate,
  utime
FROM objtypegroups
;