C_PPAreaOfResponsibility

DDL: C_PPAREAOFRESPONSIBILITY Type: view_entity CONSUMPTION

Projection of My Area of Responsibility

C_PPAreaOfResponsibility is a Consumption CDS View that provides data about "Projection of My Area of Responsibility" in SAP S/4HANA. It reads from 1 data source (R_PPAreaOfResponsibilityTP) and exposes 5 fields with key fields UserID, Plant, ProductionSupervisor, WorkCenterInternalID, MRPController.

Data Sources (1)

SourceAliasJoin Type
R_PPAreaOfResponsibilityTP R_PPAreaOfResponsibilityTP projection

Annotations (6)

NameValueLevelField
EndUserText.label Projection of My Area of Responsibility view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User Name
KEY Plant Plant Valuation Area
KEY ProductionSupervisor ProductionSupervisor Prodn Supervisor
KEY WorkCenterInternalID WorkCenterInternalID Work Center
KEY MRPController MRPController MRP Controller

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 C_PPAreaOfResponsibility.
-- 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 C_PPAreaOfResponsibility AS
SELECT
  UserID,
  Plant,
  ProductionSupervisor,
  WorkCenterInternalID,
  MRPController
FROM R_PPAreaOfResponsibilityTP
;