P_MntrWrkCtrByAreaOfRespy

DDL: P_MNTRWRKCTRBYAREAOFRESPY SQL: PMNTRWCAOR Type: view COMPOSITE

P_MntrWrkCtrByAreaOfRespy is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_SDMAreaOfResponsibility, I_ProductPlantMRPArea) and exposes 7 fields with key fields Plant, WorkCenter.

Data Sources (2)

SourceAliasJoin Type
I_SDMAreaOfResponsibility _AOR inner
I_ProductPlantMRPArea _Product inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PMNTRWCAOR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Plant _WorkCenters Plant Valuation Area
KEY WorkCenter _WorkCenters WorkCenter Work Center
WorkCenterInternalID WorkCenterInternalID Work Center
WorkCenterTypeCode WorkCenterTypeCode Object Type
WorkCenterCategoryCode WorkCenterCategoryCode
WorkCenterResponsible WorkCenterResponsible
UserID I_SDMAreaOfResponsibility UserID User Name

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_MntrWrkCtrByAreaOfRespy.
-- 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: PMNTRWCAOR

CREATE VIEW P_MntrWrkCtrByAreaOfRespy AS
SELECT
  _WorkCenters.Plant AS Plant,
  _WorkCenters.WorkCenter AS WorkCenter,
  WorkCenterInternalID,
  WorkCenterTypeCode,
  WorkCenterCategoryCode,
  WorkCenterResponsible,
  _AOR.UserID AS UserID
INNER JOIN I_ProductPlantMRPArea AS _Product ON /* join condition not captured in parsed metadata */
INNER JOIN I_SDMAreaOfResponsibility AS _AOR ON /* join condition not captured in parsed metadata */
;