E_DefectAffectedObject

DDL: E_DEFECTAFFECTEDOBJECT Type: view_entity EXTENSION Package: VDM_QM_NOTIFICATION

Defect Affected Object Extension

E_DefectAffectedObject is a Extension CDS View that provides data about "Defect Affected Object Extension" in SAP S/4HANA. It reads from 1 data source (qmfe_affctd_obj) and exposes 3 fields with key fields Notification, NotificationItem, DefectAffectedObject. Part of development package VDM_QM_NOTIFICATION.

Data Sources (1)

SourceAliasJoin Type
qmfe_affctd_obj Persistence from

Annotations (6)

NameValueLevelField
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Defect Affected Object Extension view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Notification qmnum Notification
KEY NotificationItem fenum Number of days
KEY DefectAffectedObject objcounter Affected Object Counter (#)

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 E_DefectAffectedObject.
-- 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 E_DefectAffectedObject AS
SELECT
  qmnum AS Notification,
  fenum AS NotificationItem,
  objcounter AS DefectAffectedObject
FROM qmfe_affctd_obj AS Persistence
;