I_ServiceCostLevel

DDL: I_SERVICECOSTLEVEL SQL: ISRV_COST_LVL Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
fcoc_sc_level ServiceCostLevel from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ServiceCostLevelText _Text $projection.ServiceCostLevel = _Text.ServiceCostLevel

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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]

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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FCOC_SC_LEVEL"
],
"ASSOCIATED":
[
"I_SERVICECOSTLEVELTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/