I_CasePriority
Case Priority
I_CasePriority is a Basic CDS View that provides data about "Case Priority" in SAP S/4HANA. It reads from 1 data source (scmgattr_prio) and exposes 2 fields with key field CasePriority. It has 1 association to related views. Part of development package SRM_GENERAL_VIEWS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| scmgattr_prio | scmgattr_prio | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CasePriorityText | _Text | $projection.CasePriority = _Text.CasePriority |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICASEPRIORITY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Case Priority | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | CasePriority | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CasePriority | scmgattr_prio | priority | |
| _Text | _Text |
@AbapCatalog.sqlViewName: 'ICASEPRIORITY'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Case Priority'
//@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'CasePriority'
define view I_CasePriority
as select from scmgattr_prio
association [0..*] to I_CasePriorityText as _Text on $projection.CasePriority = _Text.CasePriority
{
@ObjectModel.text.association: '_Text'
key scmgattr_prio.priority as CasePriority,
_Text
}
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