I_ControllingObjectType

DDL: I_CONTROLLINGOBJECTTYPE SQL: IFICNTROBJTYP Type: view BASIC

Controlling Object Type

I_ControllingObjectType is a Basic CDS View (Dimension) that provides data about "Controlling Object Type" in SAP S/4HANA. It reads from 1 data source (tbo00) and exposes 2 fields with key field ControllingObjectType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tbo00 tbo00 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ControllingObjectTypeT _Text $projection.ControllingObjectType = _Text.ControllingObjectType

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IFICNTROBJTYP view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey ControllingObjectType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view
EndUserText.label Controlling Object Type view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ControllingObjectType Object type
_Text _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_ControllingObjectType.
-- 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: IFICNTROBJTYP

CREATE VIEW I_ControllingObjectType AS
SELECT
  cast(obart as fis_obart preserving type ) AS ControllingObjectType
FROM tbo00
LEFT OUTER JOIN I_ControllingObjectTypeT AS _Text ON ControllingObjectType = _Text.ControllingObjectType  -- association [0..*]
;