C_RSHOpAssgmtStatusText

DDL: C_RSHOPASSGMTSTATUSTEXT SQL: CRSHOPASGNTXT Type: view CONSUMPTION

Maintenance Operation Assignment Status Text

C_RSHOpAssgmtStatusText is a Consumption CDS View that provides data about "Maintenance Operation Assignment Status Text" in SAP S/4HANA. It reads from 1 data source (P_RSHMaintOperAsgStatusText) and exposes 2 fields with key field MaintOperationAssignmentStatus.

Data Sources (1)

SourceAliasJoin Type
P_RSHMaintOperAsgStatusText P_RSHMaintOperAsgStatusText from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CRSHOPASGNTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Maintenance Operation Assignment Status Text view
ObjectModel.representativeKey MaintOperationAssignmentStatus view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaintOperationAssignmentStatus
MaintOpAssignmentStatusText P_RSHMaintOperAsgStatusText AssignedStatusText

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 C_RSHOpAssgmtStatusText.
-- 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: CRSHOPASGNTXT

CREATE VIEW C_RSHOpAssgmtStatusText AS
SELECT
  cast ( P_RSHMaintOperAsgStatusText.AssignedStatus as rsh_eam_assignment_status_int) AS MaintOperationAssignmentStatus,
  P_RSHMaintOperAsgStatusText.AssignedStatusText AS MaintOpAssignmentStatusText
FROM P_RSHMaintOperAsgStatusText
;