I_ServiceCostLevelVH

DDL: I_SERVICECOSTLEVELVH SQL: ISRV_COST_LVL_VH Type: view BASIC

Service Cost Level

I_ServiceCostLevelVH is a Basic CDS View that provides data about "Service Cost Level" in SAP S/4HANA. It reads from 1 data source (I_ServiceCostLevel) and exposes 4 fields with key fields ServiceCostLevel, ValidityStartDate.

Data Sources (1)

SourceAliasJoin Type
I_ServiceCostLevel I_ServiceCostLevel from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ISRV_COST_LVL_VH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Service Cost Level view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ServiceCostLevel ServiceCostLevel Service Cost Level
KEY ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
_Text _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 I_ServiceCostLevelVH.
-- 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: ISRV_COST_LVL_VH

CREATE VIEW I_ServiceCostLevelVH AS
SELECT
  ServiceCostLevel,
  ValidityStartDate,
  ValidityEndDate
FROM I_ServiceCostLevel
;