C_RSHOverloadedWC

DDL: C_RSHOVERLOADEDWC SQL: CRSHOVERLOADWC Type: view CONSUMPTION Package: RSH_CDS_WC_UTILIZATION

Work Center Utilization Overview

C_RSHOverloadedWC is a Consumption CDS View that provides data about "Work Center Utilization Overview" in SAP S/4HANA. It reads from 1 data source (I_RSHAssignedWorkCenters) and exposes 7 fields with key fields WorkCenter, Plant. Part of development package RSH_CDS_WC_UTILIZATION.

Data Sources (1)

SourceAliasJoin Type
I_RSHAssignedWorkCenters WorkCenter from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CRSHOVERLOADWC view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Work Center Utilization Overview view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY WorkCenter I_RSHAssignedWorkCenters WorkCenter Work Center
KEY Plant
WorkCenterText
WorkCenterCategoryCode I_RSHAssignedWorkCenters WorkCenterCategoryCode
WorkCenterUtilznIn3rdWeekText
WorkCenterUtilznIn4thWeekText
PeriodType

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_RSHOverloadedWC.
-- 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: CRSHOVERLOADWC

CREATE VIEW C_RSHOverloadedWC AS
SELECT
  WorkCenter.WorkCenter AS WorkCenter,
  cast (' ' as werks_d ) AS Plant,
  cast ( ' ' as char20 ) AS WorkCenterText,
  WorkCenter.WorkCenterCategoryCode AS WorkCenterCategoryCode,
  cast( '' as val_text ) AS WorkCenterUtilznIn3rdWeekText,
  cast( '' as val_text ) AS WorkCenterUtilznIn4thWeekText,
  'FUTURE' AS PeriodType
FROM I_RSHAssignedWorkCenters AS WorkCenter
;