P_NmbrOfCompOpActivities

DDL: P_NMBROFCOMPOPACTIVITIES Type: view_entity CONSUMPTION

P_NmbrOfCompOpActivities is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_OpActyComponentAssignment) and exposes 4 fields with key fields Reservation, ReservationItem, RecordType.

Data Sources (1)

SourceAliasJoin Type
I_OpActyComponentAssignment OpActyComponentAssignment from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Reservation I_OpActyComponentAssignment Reservation Reservation
KEY ReservationItem I_OpActyComponentAssignment ReservationItem Reservation Item
KEY RecordType I_OpActyComponentAssignment RecordType Reservation Record Type
NmbrOfCompOpActivities

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_NmbrOfCompOpActivities.
-- 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 P_NmbrOfCompOpActivities AS
SELECT
  OpActyComponentAssignment.Reservation AS Reservation,
  OpActyComponentAssignment.ReservationItem AS ReservationItem,
  OpActyComponentAssignment.RecordType AS RecordType,
  count( * ) AS NmbrOfCompOpActivities
FROM I_OpActyComponentAssignment AS OpActyComponentAssignment
;