I_RSHOperationStatusObject

DDL: I_RSHOPERATIONSTATUSOBJECT SQL: IRSHOPSTATOBJ Type: view BASIC

Status Object and Codes for PM Operations

I_RSHOperationStatusObject is a Basic CDS View that provides data about "Status Object and Codes for PM Operations" in SAP S/4HANA. It reads from 2 data sources (jest, jsto) and exposes 2 fields with key fields StatusObject, StatusCode.

Data Sources (2)

SourceAliasJoin Type
jest jest from
jsto jsto inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IRSHOPSTATOBJ view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Status Object and Codes for PM Operations view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #BASIC view
ObjectModel.representativeKey StatusCode view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY StatusObject jest objnr Val. Obj. No.
KEY StatusCode jest stat Status of Time-Dependent Document Linkage

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_RSHOperationStatusObject.
-- 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: IRSHOPSTATOBJ

CREATE VIEW I_RSHOperationStatusObject AS
SELECT
  jest.objnr AS StatusObject,
  jest.stat AS StatusCode
FROM jest
INNER JOIN jsto ON /* join condition not captured in parsed metadata */
;