P_NotifItemAffcdObjActnParam

DDL: P_NOTIFITEMAFFCDOBJACTNPARAM Type: view_entity COMPOSITE Package: VDM_QM_NOTIFICATION

Last action change of affected object

P_NotifItemAffcdObjActnParam is a Composite CDS View that provides data about "Last action change of affected object" in SAP S/4HANA. It reads from 2 data sources (I_NotificationTask, I_NotifTaskFllwUpActionParam) and exposes 6 fields with key fields Notification, NotificationItem, NotificationTask, DefectAffectedObject. Part of development package VDM_QM_NOTIFICATION.

Data Sources (2)

SourceAliasJoin Type
I_NotificationTask I_NotificationTask from
I_NotifTaskFllwUpActionParam I_NotifTaskFllwUpActionParam inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Notification I_NotificationTask Notification Notification
KEY NotificationItem I_NotificationTask NotificationItem Number of days
KEY NotificationTask I_NotificationTask NotificationTask Task
KEY DefectAffectedObject I_NotifTaskFllwUpActionParam DefectAffectedObject Affected Object Counter (#)
ChangedDateTime I_NotificationTask ChangedDateTime Time Stamp
QltyTaskFllwUpActionSts I_NotificationTask QltyTaskFllwUpActionSts Follow-Up Action Status

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_NotifItemAffcdObjActnParam.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW P_NotifItemAffcdObjActnParam AS
SELECT
  I_NotificationTask.Notification AS Notification,
  I_NotificationTask.NotificationItem AS NotificationItem,
  I_NotificationTask.NotificationTask AS NotificationTask,
  I_NotifTaskFllwUpActionParam.DefectAffectedObject AS DefectAffectedObject,
  I_NotificationTask.ChangedDateTime AS ChangedDateTime,
  I_NotificationTask.QltyTaskFllwUpActionSts AS QltyTaskFllwUpActionSts
FROM I_NotificationTask
INNER JOIN I_NotifTaskFllwUpActionParam ON /* join condition not captured in parsed metadata */
;