I_ChgMgmtUserStatus1Text

DDL: I_CHGMGMTUSERSTATUS1TEXT SQL: ICMUSRSTS1TEXT Type: view BASIC

Change Management User Status 1 Text

I_ChgMgmtUserStatus1Text is a Basic CDS View that provides data about "Change Management User Status 1 Text" in SAP S/4HANA. It reads from 1 data source (/iam/c_stat_t) and exposes 5 fields with key fields Language, ChgMgmtUserStatus1. 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_ChgMgmtUserStatus1 _ChgMgmtUserStatus1 $projection.ChgMgmtUserStatus1 = _ChgMgmtUserStatus1.ChgMgmtUserStatus1
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
EndUserText.label Change Management User Status 1 Text view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ICMUSRSTS1TEXT 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 ChgMgmtUserStatus1 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 ChgMgmtUserStatus1 status Workflow Status
ChgMgmtUserStatus1Text description Well Code Des.
_ChgMgmtUserStatus1 _ChgMgmtUserStatus1
_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_ChgMgmtUserStatus1Text.
-- 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: ICMUSRSTS1TEXT

CREATE VIEW I_ChgMgmtUserStatus1Text AS
SELECT
  langu AS Language,
  status AS ChgMgmtUserStatus1,
  description AS ChgMgmtUserStatus1Text
FROM /iam/c_stat_t
LEFT OUTER JOIN I_ChgMgmtUserStatus1 AS _ChgMgmtUserStatus1 ON ChgMgmtUserStatus1 = _ChgMgmtUserStatus1.ChgMgmtUserStatus1  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;