Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

P_BR_ReportingPlant

DDL: P_BR_REPORTINGPLANT SQL: PBRSPEDPLANT Type: view CONSUMPTION

EFD - Plants

P_BR_ReportingPlant is a Consumption CDS View that provides data about "EFD - Plants" in SAP S/4HANA. It reads from 2 data sources (I_BR_Plant, I_Purreqvaluationarea) and exposes 3 fields.

Data Sources (2)

SourceAliasJoin Type
I_BR_Plant plant from
I_Purreqvaluationarea va inner

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName PBRSPEDPLANT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label EFD - Plants view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
VDM.private true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor view

Fields (3)

KeyFieldSource TableSource FieldDescription
CompanyCode I_Purreqvaluationarea CompanyCode Receiver Company Code
BusinessPlace I_BR_Plant BusinessPlace Business place
Plant I_BR_Plant Plant Valuation Area

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_BR_ReportingPlant.
-- 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: PBRSPEDPLANT

CREATE VIEW P_BR_ReportingPlant AS
SELECT
  va.CompanyCode AS CompanyCode,
  plant.BusinessPlace AS BusinessPlace,
  plant.Plant AS Plant
FROM I_BR_Plant AS plant
INNER JOIN I_Purreqvaluationarea AS va ON /* join condition not captured in parsed metadata */
;