I_MstrProjIssueType

DDL: I_MSTRPROJISSUETYPE SQL: IMPISSUETYPE Type: view BASIC

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)

SourceAliasJoin Type
/iam/c_issuetyp /iam/c_issuetyp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MstrProjIssueTypeText _Text $projection.IssueType = _Text.IssueType

Annotations (16)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'