I_StatusObject

DDL: I_STATUSOBJECT SQL: ISTATUSOBJECT Type: view BASIC

Status Object

I_StatusObject is a Basic CDS View that provides data about "Status Object" in SAP S/4HANA. It reads from 1 data source (jsto) and exposes 3 fields with key field StatusObject.

Data Sources (1)

SourceAliasJoin Type
jsto jsto from

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey StatusObject view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.sqlViewName ISTATUSOBJECT view
AbapCatalog.preserveKey true view
EndUserText.label Status Object view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY StatusObject jsto objnr Val. Obj. No.
StatusProfile jsto stsma Status Profile
_StatusProfile _StatusProfile

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_StatusObject.
-- 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: ISTATUSOBJECT

CREATE VIEW I_StatusObject AS
SELECT
  jsto.objnr AS StatusObject,
  jsto.stsma AS StatusProfile
FROM jsto
;