I_MassMaintCapAreaOfRespyPlant

DDL: I_MASSMAINTCAPAREAOFRESPYPLANT Type: view_entity COMPOSITE

Unique plants Workcenter Capacity AOR

I_MassMaintCapAreaOfRespyPlant is a Composite CDS View that provides data about "Unique plants Workcenter Capacity AOR" in SAP S/4HANA. It reads from 6 data sources and exposes 1 field with key field Plant.

Data Sources (6)

SourceAliasJoin Type
I_MassMaintCapAreaOfRespyPref _AORPref inner
I_MassMaintCapAreaOfRespyPref _AORPref inner
I_MassMaintCapAreaOfRespyPref _AORPref inner
I_SDMAreaOfResponsibility _SDMAreaOfResponsibility union
I_WorkCtrGrpCapByAreaOfRespy _wkcgrpAOR from
P_WrkCtrPersnRespAORList _wkcrespAOR union

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
EndUserText.label Unique plants Workcenter Capacity AOR view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY Plant

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 I_MassMaintCapAreaOfRespyPlant.
-- 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 I_MassMaintCapAreaOfRespyPlant AS
SELECT
  _wkcgrpAOR.Plant AS Plant
FROM I_WorkCtrGrpCapByAreaOfRespy AS _wkcgrpAOR
INNER JOIN I_MassMaintCapAreaOfRespyPref AS _AORPref ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): I_SDMAreaOfResponsibility, P_WrkCtrPersnRespAORList
;