P_OpActyInstceWithMissingComp
Operation Activity Instance with missing Component
P_OpActyInstceWithMissingComp is a Composite CDS View that provides data about "Operation Activity Instance with missing Component" in SAP S/4HANA. It reads from 2 data sources (I_OpActyComponentAssignment, I_ReservationItem) and exposes 4 fields with key fields OpActyNtwkInstance, OpActyNtwkElement. Part of development package MPE_EXEC_COMMON.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_OpActyComponentAssignment | OpActyComponentAssignment | from |
| I_ReservationItem | ReservationItem | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PMPEPOAWTHMSGCMP | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| AbapCatalog.compiler.compareFilter | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OpActyNtwkInstance | I_OpActyComponentAssignment | OpActyNtwkInstance | |
| KEY | OpActyNtwkElement | I_OpActyComponentAssignment | OpActyNtwkElement | |
| _OpActyNtwkInstance | _OpActyNtwkInstance | |||
| _OperationActivityInstance | _OperationActivityInstance |
@AbapCatalog.sqlViewName: 'PMPEPOAWTHMSGCMP'
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@VDM.viewType: #COMPOSITE
@VDM.private: true
@AbapCatalog.compiler.compareFilter: true
define view P_OpActyInstceWithMissingComp
as select from I_OpActyComponentAssignment as OpActyComponentAssignment
inner join I_ReservationItem as ReservationItem on ReservationItem.Reservation = OpActyComponentAssignment.Reservation
and ReservationItem.ReservationItem = OpActyComponentAssignment.ReservationItem
and ReservationItem.RecordType = OpActyComponentAssignment.RecordType
{
key OpActyComponentAssignment.OpActyNtwkInstance,
key OpActyComponentAssignment.OpActyNtwkElement,
/* Associations */
_OpActyNtwkInstance,
_OperationActivityInstance
}
where
ReservationItem.MaterialComponentIsMissing = 'X'
and ReservationItem.ReservationItemIsFinallyIssued = ''
group by
OpActyComponentAssignment.OpActyNtwkInstance,
OpActyComponentAssignment.OpActyNtwkElement
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