C_RSHOrderPriorityVH

DDL: C_RSHORDERPRIORITYVH SQL: CRSHORDPRIOVH Type: view CONSUMPTION

Value Help for Order Priorities

C_RSHOrderPriorityVH is a Consumption CDS View that provides data about "Value Help for Order Priorities" in SAP S/4HANA. It reads from 2 data sources (I_PMNotificationPriority, I_PMNotificationPriorityText) and exposes 4 fields with key fields MaintPriority, MaintPriorityType.

Data Sources (2)

SourceAliasJoin Type
I_PMNotificationPriority _PMNotificationPriority inner
I_PMNotificationPriorityText _PMNotificationPriorityText left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CRSHORDPRIOVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value Help for Order Priorities view
ObjectModel.representativeKey MaintPriority view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.resultSet.sizeCategory #XS view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaintPriority I_PMNotificationPriority MaintPriority Priority
KEY MaintPriorityType _MaintOrderTypeControlParam MaintPriorityType PriorityType
MaintPriorityColorCode I_PMNotificationPriority MaintPriorityColorCode
MaintPriorityDesc I_PMNotificationPriorityText MaintPriorityDesc Priority

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_RSHOrderPriorityVH.
-- 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: CRSHORDPRIOVH

CREATE VIEW C_RSHOrderPriorityVH AS
SELECT
  _PMNotificationPriority.MaintPriority AS MaintPriority,
  _MaintOrderTypeControlParam.MaintPriorityType AS MaintPriorityType,
  _PMNotificationPriority.MaintPriorityColorCode AS MaintPriorityColorCode,
  _PMNotificationPriorityText.MaintPriorityDesc AS MaintPriorityDesc
INNER JOIN I_PMNotificationPriority AS _PMNotificationPriority ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_PMNotificationPriorityText AS _PMNotificationPriorityText ON /* join condition not captured in parsed metadata */
;