I_PMWOCDefaults

DDL: I_PMWOCDEFAULTS SQL: IPMWOCDEFAULTS Type: view BASIC Package: IWOC

Notification Default Values

I_PMWOCDefaults is a Basic CDS View that provides data about "Notification Default Values" in SAP S/4HANA. It reads from 1 data source (t399j) and exposes 3 fields with key field NotificationCategory. Part of development package IWOC.

Data Sources (1)

SourceAliasJoin Type
t399j t399j from

Annotations (9)

NameValueLevelField
EndUserText.label Notification Default Values view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPMWOCDEFAULTS view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey NotificationCategory view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY NotificationCategory t365 qmtyp
DefaultMaintNotifType t365 qmart
DefaultMaintPriorityType t399j artpr
@EndUserText.label: 'Notification Default Values'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPMWOCDEFAULTS'
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.representativeKey: 'NotificationCategory'

@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S 

define view I_PMWOCDefaults as select from t399j
association [0..1] to t365 on t365.tcode = 'IW21' {
    key t365.qmtyp as NotificationCategory,
    t365.qmart as DefaultMaintNotifType,
    t399j.artpr as DefaultMaintPriorityType 
}