I_StatusObjectWithUUID

DDL: I_STATUSOBJECTWITHUUID Type: view_entity BASIC

GUID based status object

I_StatusObjectWithUUID is a Basic CDS View that provides data about "GUID based status object" in SAP S/4HANA. It reads from 1 data source (crm_jsto) and exposes 3 fields with key field StatusObjectUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
crm_jsto crm_jsto from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_StatusProfile _StatusProfile $projection.StatusProfile = _StatusProfile.StatusProfile

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label GUID based status object view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY StatusObjectUUID objnr Val. Obj. No.
StatusProfile 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_StatusObjectWithUUID.
-- 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 I_StatusObjectWithUUID AS
SELECT
  objnr AS StatusObjectUUID,
  stsma AS StatusProfile
FROM crm_jsto
LEFT OUTER JOIN I_StatusProfile AS _StatusProfile ON StatusProfile = _StatusProfile.StatusProfile  -- association [0..1]
;