I_IssActyMgmtUserStatus2

DDL: I_ISSACTYMGMTUSERSTATUS2 SQL: IAMUSRSTAT2 Type: view BASIC

User Status 2

I_IssActyMgmtUserStatus2 is a Basic CDS View that provides data about "User Status 2" in SAP S/4HANA. It reads from 1 data source (/iam/c_stat) and exposes 2 fields with key field IssActyMgmtUserStatus2. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/iam/c_stat /iam/c_stat from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IssActyMgmtUserStatus2t _Text $projection.IssActyMgmtUserStatus2 = _Text.IssActyMgmtUserStatus2

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IAMUSRSTAT2 view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label User Status 2 view
ObjectModel.compositionRoot true view
VDM.viewType #BASIC view
ObjectModel.representativeKey IssActyMgmtUserStatus2 view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY IssActyMgmtUserStatus2 status Workflow Status
_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_IssActyMgmtUserStatus2.
-- 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: IAMUSRSTAT2

CREATE VIEW I_IssActyMgmtUserStatus2 AS
SELECT
  status AS IssActyMgmtUserStatus2
FROM /iam/c_stat
LEFT OUTER JOIN I_IssActyMgmtUserStatus2t AS _Text ON IssActyMgmtUserStatus2 = _Text.IssActyMgmtUserStatus2  -- association [0..*]
;