P_MfgNotifFollowUpActnHistory

DDL: P_MFGNOTIFFOLLOWUPACTNHISTORY SQL: PFLWUPACTN Type: view BASIC

P_MfgNotifFollowUpActnHistory is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (qmsm) and exposes 24 fields with key fields Notification, NotificationTask. It has 7 associations to related views.

Data Sources (1)

SourceAliasJoin Type
qmsm Task from

Associations (7)

CardinalityTargetAliasCondition
[0..1] I_Notification _Notification $projection.Notification = _Notification.Notification
[0..1] I_BusinessPartner _QualityTaskProcessor $projection.QualityTaskProcessor = _QualityTaskProcessor.BusinessPartner
[0..1] I_PartnerFunction _PartnerFunction $projection.ResponsiblePersonFunctionCode = _PartnerFunction.PartnerFunction
[0..1] I_ContactPerson _ContactPerson _ContactPerson.ContactPerson = $projection.ResponsiblePerson
[0..1] I_Customer _Customer _Customer.Customer = $projection.ResponsiblePerson
[0..1] I_WorkforcePerson _Employee _Employee.PersonExternalID = $projection.ResponsiblePerson
[0..1] I_Supplier _Supplier _Supplier.Supplier = $projection.ResponsiblePerson

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PFLWUPACTN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY Notification qmsm qmnum Notification
KEY NotificationTask qmsm manum Task
NotificationItem qmsm fenum Number of days
DefectInternalID qmsm defectinternalid Internal Defect ID
QltyTaskFollowUpAction qmsm folgeact Follow-Up Actn
QltyTaskFllwUpActionSts qmsm statfoa Follow-Up Action Status
CreatedByUser qmsm ernam User Name
CreationDate qmsm erdat Entered On
CreationTime
QualityTaskCodeCatalog
QualityTaskCodeGroup
QualityTaskCode qmsm mncod Task Code
QualityTaskOrigin qmsm taskorigin Task Origin
ResponsiblePerson qmsm parnr Responsible
QualityTaskProcessor qmsm processor User Name
ResponsiblePersonFunctionCode
QualityTaskText qmsm matxt Task Text
_Notification _Notification
_QualityTaskProcessor _QualityTaskProcessor
_PartnerFunction _PartnerFunction
_ContactPerson _ContactPerson
_Customer _Customer
_Employee _Employee
_Supplier _Supplier

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_MfgNotifFollowUpActnHistory.
-- 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.
-- SQL view name: PFLWUPACTN

CREATE VIEW P_MfgNotifFollowUpActnHistory AS
SELECT
  Task.qmnum AS Notification,
  Task.manum AS NotificationTask,
  Task.fenum AS NotificationItem,
  Task.defectinternalid AS DefectInternalID,
  Task.folgeact AS QltyTaskFollowUpAction,
  Task.statfoa AS QltyTaskFllwUpActionSts,
  Task.ernam AS CreatedByUser,
  Task.erdat AS CreationDate,
  cast( Task.erzeit as vdm_qerstezeit preserving type ) AS CreationTime,
  cast( Task.mnkat as qkatart preserving type ) AS QualityTaskCodeCatalog,
  cast( Task.mngrp as vdm_qtaskcodegrp preserving type ) AS QualityTaskCodeGroup,
  Task.mncod AS QualityTaskCode,
  Task.taskorigin AS QualityTaskOrigin,
  Task.parnr AS ResponsiblePerson,
  Task.processor AS QualityTaskProcessor,
  cast(Task.parvw as vdm_q_parvw_vera preserving type ) AS ResponsiblePersonFunctionCode,
  Task.matxt AS QualityTaskText
FROM qmsm AS Task
LEFT OUTER JOIN I_Notification AS _Notification ON Notification = _Notification.Notification  -- association [0..1]
LEFT OUTER JOIN I_BusinessPartner AS _QualityTaskProcessor ON QualityTaskProcessor = _QualityTaskProcessor.BusinessPartner  -- association [0..1]
LEFT OUTER JOIN I_PartnerFunction AS _PartnerFunction ON ResponsiblePersonFunctionCode = _PartnerFunction.PartnerFunction  -- association [0..1]
LEFT OUTER JOIN I_ContactPerson AS _ContactPerson ON _ContactPerson.ContactPerson = ResponsiblePerson  -- association [0..1]
LEFT OUTER JOIN I_Customer AS _Customer ON _Customer.Customer = ResponsiblePerson  -- association [0..1]
LEFT OUTER JOIN I_WorkforcePerson AS _Employee ON _Employee.PersonExternalID = ResponsiblePerson  -- association [0..1]
LEFT OUTER JOIN I_Supplier AS _Supplier ON _Supplier.Supplier = ResponsiblePerson  -- association [0..1]
;