I_ResponseProfile

DDL: I_RESPONSEPROFILE Type: view BASIC Package: CRMS4_REPORT

Response Profile

I_ResponseProfile is a Basic CDS View (Dimension) that provides data about "Response Profile" in SAP S/4HANA. It reads from 1 data source (crmd_escal) and exposes 2 fields with key field ResponseProfile. It has 1 association to related views. Part of development package CRMS4_REPORT.

Data Sources (1)

SourceAliasJoin Type
crmd_escal crmd_escal from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_ResponseProfileText _Text $projection.ResponseProfile = _Text.ResponseProfile

Annotations (20)

NameValueLevelField
EndUserText.label Response Profile view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IRSPPRFL view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ResponseProfile view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name ServiceResponseProfile view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
Consumption.ranked true view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ResponseProfile srv_escal
_Text _Text
@EndUserText.label: 'Response Profile'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
  sqlViewName: 'IRSPPRFL',
  compiler.compareFilter: true
}
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel:{
  dataCategory: #VALUE_HELP,
  usageType.serviceQuality: #A,
  usageType.sizeCategory: #S ,
  usageType.dataClass: #CUSTOMIZING,
  representativeKey: 'ResponseProfile',
  modelingPattern: #ANALYTICAL_DIMENSION,
  sapObjectNodeType.name: 'ServiceResponseProfile',
  supportedCapabilities: [#ANALYTICAL_DIMENSION, 
                          #CDS_MODELING_ASSOCIATION_TARGET, 
                          #SQL_DATA_SOURCE, 
                          #CDS_MODELING_DATA_SOURCE,
                          #VALUE_HELP_PROVIDER,
                          #EXTRACTION_DATA_SOURCE]
}
@Metadata.ignorePropagatedAnnotations: true

@Analytics: {
    dataCategory: #DIMENSION,
    internalName: #LOCAL,
    dataExtraction.enabled: true
  }  
@Consumption.ranked: true  
@Search.searchable: true     

define view I_ResponseProfile
  as select from crmd_escal
  association [1..*] to I_ResponseProfileText as _Text on $projection.ResponseProfile = _Text.ResponseProfile
{

      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH  
      @ObjectModel.text.association: '_Text'
  key srv_escal as ResponseProfile,
      _Text

}