I_ChgMgmtUserStatus5

DDL: I_CHGMGMTUSERSTATUS5 SQL: ICMUSERSTATUS5 Type: view BASIC

Change Management User Status 5

I_ChgMgmtUserStatus5 is a Basic CDS View (Dimension) that provides data about "Change Management User Status 5" in SAP S/4HANA. It reads from 1 data source (/iam/c_stat) and exposes 3 fields with key field ChgMgmtUserStatus5. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/iam/c_stat /iam/c_stat from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChgMgmtUserStatus5Text _Text $projection.ChgMgmtUserStatus5 = _Text.ChgMgmtUserStatus5

Annotations (16)

NameValueLevelField
EndUserText.label Change Management User Status 5 view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
AbapCatalog.sqlViewName ICMUSERSTATUS5 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ChgMgmtUserStatus5 view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChgMgmtUserStatus5 status Workflow Status
ChgMgmtConfigurationIsInactive inactive WO Locked
_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_ChgMgmtUserStatus5.
-- 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: ICMUSERSTATUS5

CREATE VIEW I_ChgMgmtUserStatus5 AS
SELECT
  status AS ChgMgmtUserStatus5,
  inactive AS ChgMgmtConfigurationIsInactive
FROM /iam/c_stat
LEFT OUTER JOIN I_ChgMgmtUserStatus5Text AS _Text ON ChgMgmtUserStatus5 = _Text.ChgMgmtUserStatus5  -- association [0..*]
;