CDB_I_OBJ_MAIN

DDL: CDB_I_OBJ_MAIN Type: view_entity

CDB: CDS View Object Main

CDB_I_OBJ_MAIN is a CDS View that provides data about "CDB: CDS View Object Main" in SAP S/4HANA. It reads from 1 data source (cdb_obj_main) and exposes 8 fields with key field ObjName.

Data Sources (1)

SourceAliasJoin Type
cdb_obj_main cdb from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDB: CDS View Object Main view
Metadata.allowExtensions true view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ObjName cdb_obj_main obj_name Object Name
ObjDescription cdb_obj_main obj_description Object Description
ObjType cdb_obj_main obj_type Type
Area cdb_obj_main area Settings Area
SubArea cdb_obj_main subarea Business Sub Area
PsPosid cdb_obj_main ps_posid WBS Element
CdsType cdb_obj_main cds_type CDS View Type
CdsReleaseState cdb_obj_main cds_release_state CDS release State

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 CDB_I_OBJ_MAIN.
-- 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.

CREATE VIEW CDB_I_OBJ_MAIN AS
SELECT
  cdb.obj_name AS ObjName,
  cdb.obj_description AS ObjDescription,
  cdb.obj_type AS ObjType,
  cdb.area AS Area,
  cdb.subarea AS SubArea,
  cdb.ps_posid AS PsPosid,
  cdb.cds_type AS CdsType,
  cdb.cds_release_state AS CdsReleaseState
FROM cdb_obj_main AS cdb
;