I_MstrProjIssueType
Master Project Issue Type
I_MstrProjIssueType is a Basic CDS View (Dimension) that provides data about "Master Project Issue Type" in SAP S/4HANA. It reads from 1 data source (/iam/c_issuetyp) and exposes 3 fields with key field IssueType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /iam/c_issuetyp | /iam/c_issuetyp | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MstrProjIssueTypeText | _Text | $projection.IssueType = _Text.IssueType |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMPISSUETYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | IssueType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Master Project Issue Type | view | |
| Search.searchable | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.numberOfKeyFields | 000 | view | |
| AbapCatalog.buffering.type | #FULL | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IssueType | issue_type | ||
| OriginApplication | application | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IMPISSUETYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'IssueType'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Master Project Issue Type'
@Search.searchable: true
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.numberOfKeyFields: 000
@AbapCatalog.buffering.type: #FULL
define view I_MstrProjIssueType
as select from /iam/c_issuetyp
association [0..*] to I_MstrProjIssueTypeText as _Text on $projection.IssueType = _Text.IssueType
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
key issue_type as IssueType,
application as OriginApplication,
_Text
}
where
application = 'ICM'
or application = 'MCA'
or application = 'RMA'
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