E_DefectAffectedObject
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qmfe_affctd_obj | Persistence | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | EDEFAFFCDOBJ | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Notification | qmnum | ||
| KEY | NotificationItem | fenum | ||
| KEY | DefectAffectedObject | objcounter |
@AbapCatalog.sqlViewName: 'EDEFAFFCDOBJ'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #EXTENSION
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Defect Affected Object Extension'
@ObjectModel.usageType: {
dataClass: #TRANSACTIONAL,
sizeCategory: #M,
serviceQuality: #A
}
define view E_DefectAffectedObject as select from qmfe_affctd_obj as Persistence
{
key qmnum as Notification,
key fenum as NotificationItem,
key objcounter as DefectAffectedObject
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"QMFE_AFFCTD_OBJ"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA