C_RSHSchedulingTypeVH

DDL: C_RSHSCHEDULINGTYPEVH SQL: CRSHSCHEDTYPEVH Type: view CONSUMPTION

Scheduling Type Value Help

C_RSHSchedulingTypeVH is a Consumption CDS View that provides data about "Scheduling Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_SchedulingType) and exposes 2 fields with key field SchedulingType.

Data Sources (1)

SourceAliasJoin Type
I_SchedulingType SchedluingType from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CRSHSCHEDTYPEVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Scheduling Type Value Help view
ObjectModel.representativeKey SchedulingType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #CONSUMPTION view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SchedulingType I_SchedulingType SchedulingType
SchedulingTypeName Scheduling Type Text

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_RSHSchedulingTypeVH.
-- 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: CRSHSCHEDTYPEVH

CREATE VIEW C_RSHSchedulingTypeVH AS
SELECT
  SchedluingType.SchedulingType AS SchedulingType,
  SchedluingType._Text[1:Language = $session.system_language].SchedulingTypeName AS SchedulingTypeName
FROM I_SchedulingType AS SchedluingType
;