P_OpActyInstceWithMissingComp

DDL: P_OPACTYINSTCEWITHMISSINGCOMP SQL: PMPEPOAWTHMSGCMP Type: view COMPOSITE Package: MPE_EXEC_COMMON

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)

SourceAliasJoin Type
I_OpActyComponentAssignment OpActyComponentAssignment from
I_ReservationItem ReservationItem inner

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY OpActyNtwkInstance I_OpActyComponentAssignment OpActyNtwkInstance Instance ID
KEY OpActyNtwkElement I_OpActyComponentAssignment OpActyNtwkElement Element Number
_OpActyNtwkInstance _OpActyNtwkInstance
_OperationActivityInstance _OperationActivityInstance

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_OpActyInstceWithMissingComp.
-- 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: PMPEPOAWTHMSGCMP

CREATE VIEW P_OpActyInstceWithMissingComp AS
SELECT
  OpActyComponentAssignment.OpActyNtwkInstance AS OpActyNtwkInstance,
  OpActyComponentAssignment.OpActyNtwkElement AS OpActyNtwkElement
FROM I_OpActyComponentAssignment AS OpActyComponentAssignment
INNER JOIN I_ReservationItem AS ReservationItem ON /* join condition not captured in parsed metadata */
;