I_ResponseProfile
Response Profile View
I_ResponseProfile is a Basic CDS View that provides data about "Response Profile View" 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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crmd_escal | crmd_escal | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_ResponseProfileText | _Text | $projection.ResponseProfile = _Text.ResponseProfile |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Response Profile View | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IRSPPRFL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | ResponseProfile | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ResponseProfile | srv_escal | ||
| _Text | _Text |
@EndUserText.label: 'Response Profile View'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'IRSPPRFL',
compiler.compareFilter: true,
preserveKey: true
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:{
usageType.serviceQuality: #A,
usageType.sizeCategory: #S ,
usageType.dataClass: #CUSTOMIZING,
representativeKey: 'ResponseProfile'
}
@Metadata.ignorePropagatedAnnotations: true
define view I_ResponseProfile
as select from crmd_escal
association [1..*] to I_ResponseProfileText as _Text on $projection.ResponseProfile = _Text.ResponseProfile
{
@ObjectModel.text.association: '_Text'
key srv_escal as ResponseProfile,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMD_ESCAL"
],
"ASSOCIATED":
[
"I_RESPONSEPROFILETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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