P_PreviousProfitCenter

DDL: P_PREVIOUSPROFITCENTER SQL: PFIPREVPC Type: view COMPOSITE

P_PreviousProfitCenter is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_ProfitCenter) and exposes 3 fields with key fields ControllingArea, ProfitCenter.

Data Sources (1)

SourceAliasJoin Type
I_ProfitCenter I_ProfitCenter from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PFIPREVPC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.representativeKey ProfitCenter view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea Controlling Area
KEY ProfitCenter ProfitCenter Profit Center
ValidityEndDate

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_PreviousProfitCenter.
-- 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: PFIPREVPC
-- Parameters: P_KeyDate : sydate

CREATE VIEW P_PreviousProfitCenter AS
SELECT
  ControllingArea,
  ProfitCenter,
  max( ValidityEndDate ) AS ValidityEndDate
FROM I_ProfitCenter
;