I_RSHOperationUserStatus

DDL: I_RSHOPERATIONUSERSTATUS SQL: IRSHOPUSRSTS Type: view BASIC

Operation User Status

I_RSHOperationUserStatus is a Basic CDS View that provides data about "Operation User Status" in SAP S/4HANA. It reads from 1 data source (P_RSHUserStatus) and exposes 5 fields with key fields StatusObject, StatusCode, StatusProfile.

Data Sources (1)

SourceAliasJoin Type
P_RSHUserStatus P_RSHUserStatus from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IRSHOPUSRSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Operation User Status view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY StatusObject StatusObject Status Object
KEY StatusCode StatusCode Statuscode
KEY StatusProfile StatusProfile Status Profile
StatusName UserStatusName
StatusShortName

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_RSHOperationUserStatus.
-- 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: IRSHOPUSRSTS

CREATE VIEW I_RSHOperationUserStatus AS
SELECT
  StatusObject,
  StatusCode,
  StatusProfile,
  UserStatusName AS StatusName,
  cast( UserStatusShortName as co_asttx ) AS StatusShortName
FROM P_RSHUserStatus
;