I_RSHOrderUserStatus

DDL: I_RSHORDERUSERSTATUS SQL: IRSHORDUSRSTS Type: view BASIC

Order User Status

I_RSHOrderUserStatus is a Basic CDS View that provides data about "Order 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 IRSHORDUSRSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Order 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_RSHOrderUserStatus.
-- 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: IRSHORDUSRSTS

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