I_ServiceCostLevel
Service Cost Level
I_ServiceCostLevel is a Basic CDS View that provides data about "Service Cost Level" in SAP S/4HANA. It reads from 1 data source (fcoc_sc_level) and exposes 4 fields with key fields ServiceCostLevel, ValidityStartDate. It has 1 association to related views. Part of development package FINS_CO_CUST.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fcoc_sc_level | ServiceCostLevel | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ServiceCostLevelText | _Text | $projection.ServiceCostLevel = _Text.ServiceCostLevel |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISRV_COST_LVL | view | |
| AbapCatalog.compiler.compareFilter | 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.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #NONE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceCostLevel | srv_cost_level | ||
| KEY | ValidityStartDate | start_date | ||
| ValidityEndDate | end_date | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'ISRV_COST_LVL'
//@ClientDependent: true
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Service Cost Level'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #CLIENT_DEPENDENT
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #NONE
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #UI_PROVIDER_PROJECTION_SOURCE]
define view I_ServiceCostLevel
as select from fcoc_sc_level as ServiceCostLevel
association [0..*] to I_ServiceCostLevelText as _Text on $projection.ServiceCostLevel = _Text.ServiceCostLevel
{
@ObjectModel.text.association: '_Text'
key srv_cost_level as ServiceCostLevel,
key start_date as ValidityStartDate,
end_date as ValidityEndDate,
_Text
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA