I_ResponseProfileText
Response Profile Text
I_ResponseProfileText is a Basic CDS View that provides data about "Response Profile Text" in SAP S/4HANA. It reads from 1 data source (crmd_escal_t) and exposes 5 fields with key fields ResponseProfile, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crmd_escal_t | crmd_escal_t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_ResponseProfile | _ResponseProfile | $projection.ResponseProfile = _ResponseProfile.ResponseProfile |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Response Profile Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IRSPPRFLTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ResponseProfile | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ResponseProfile | srv_escal | ||
| KEY | Language | langu | ||
| ServiceProfileName | description | |||
| _ResponseProfile | _ResponseProfile | |||
| _Language | _Language |
@EndUserText.label: 'Response Profile Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'IRSPPRFLTXT',
compiler.compareFilter: true,
preserveKey: true
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel:{
usageType.serviceQuality: #A,
usageType.sizeCategory: #S ,
usageType.dataClass: #CUSTOMIZING,
dataCategory: #TEXT,
representativeKey: 'ResponseProfile'
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
define view I_ResponseProfileText
as select from crmd_escal_t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_ResponseProfile as _ResponseProfile on $projection.ResponseProfile = _ResponseProfile.ResponseProfile
{
@ObjectModel.foreignKey.association: '_ResponseProfile'
key srv_escal as ResponseProfile,
@Semantics.language: true
key langu as Language,
@Semantics.text: true
description as ServiceProfileName,
_ResponseProfile,
_Language
}
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