I_ChgMgmtUserStatus5Text

DDL: I_CHGMGMTUSERSTATUS5TEXT SQL: ICMUSRSTS5TEXT Type: view BASIC

Change Management User Status 5 Text

I_ChgMgmtUserStatus5Text is a Basic CDS View that provides data about "Change Management User Status 5 Text" in SAP S/4HANA. It reads from 1 data source (/iam/c_stat_t) and exposes 5 fields with key fields Language, ChgMgmtUserStatus5. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/iam/c_stat_t /iam/c_stat_t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ChgMgmtUserStatus5 _ChgMgmtUserStatus5 $projection.ChgMgmtUserStatus5 = _ChgMgmtUserStatus5.ChgMgmtUserStatus5
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
EndUserText.label Change Management User Status 5 Text view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ICMUSRSTS5TEXT 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.dataCategory #TEXT 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 #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY ChgMgmtUserStatus5 status Workflow Status
ChgMgmtUserStatus5Text description Well Code Des.
_ChgMgmtUserStatus5 _ChgMgmtUserStatus5
_Language _Language

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_ChgMgmtUserStatus5Text.
-- 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: ICMUSRSTS5TEXT

CREATE VIEW I_ChgMgmtUserStatus5Text AS
SELECT
  langu AS Language,
  status AS ChgMgmtUserStatus5,
  description AS ChgMgmtUserStatus5Text
FROM /iam/c_stat_t
LEFT OUTER JOIN I_ChgMgmtUserStatus5 AS _ChgMgmtUserStatus5 ON ChgMgmtUserStatus5 = _ChgMgmtUserStatus5.ChgMgmtUserStatus5  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;