I_StatusObjectActiveStatus

DDL: I_STATUSOBJECTACTIVESTATUS SQL: ISTATOBJSTATACT Type: view COMPOSITE

Status Object Active Status

I_StatusObjectActiveStatus is a Composite CDS View that provides data about "Status Object Active Status" in SAP S/4HANA. It reads from 1 data source (I_StatusObjectStatus) and exposes 8 fields with key fields StatusObject, StatusCode.

Data Sources (1)

SourceAliasJoin Type
I_StatusObjectStatus I_StatusObjectStatus from

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey StatusCode view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.sqlViewName ISTATOBJSTATACT view
AbapCatalog.preserveKey true view
EndUserText.label Status Object Active Status view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #COMPOSITE view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY StatusObject StatusObject Status Object
KEY StatusCode StatusCode Statuscode
StatusProfile StatusProfile Status Profile
IsUserStatus IsUserStatus
StatusIsActive StatusIsActive
_StatusObject _StatusObject
_StatusProfile _StatusProfile
_StatusCode _StatusCode

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_StatusObjectActiveStatus.
-- 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: ISTATOBJSTATACT

CREATE VIEW I_StatusObjectActiveStatus AS
SELECT
  StatusObject,
  StatusCode,
  StatusProfile,
  IsUserStatus,
  StatusIsActive
FROM I_StatusObjectStatus
;