I_ServiceProfile
Service Profile View
I_ServiceProfile is a Basic CDS View that provides data about "Service Profile View" in SAP S/4HANA. It reads from 1 data source (crmd_serwi) and exposes 2 fields with key field ServiceProfile. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| crmd_serwi | crmd_serwi | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_ServiceProfileText | _Text | $projection.ServiceProfile = _Text.ServiceProfile |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Service Profile View | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISRVCPRFL | 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 | ServiceProfile | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceProfile | srv_serwi | ||
| _Text | _Text |
@EndUserText.label: 'Service Profile View'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'ISRVCPRFL',
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: 'ServiceProfile'
}
@Metadata.ignorePropagatedAnnotations: true
define view I_ServiceProfile
as select from crmd_serwi
association [1..*] to I_ServiceProfileText as _Text on $projection.ServiceProfile = _Text.ServiceProfile
{
@ObjectModel.text.association: '_Text'
key srv_serwi as ServiceProfile,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMD_SERWI"
],
"ASSOCIATED":
[
"I_SERVICEPROFILETEXT"
],
"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