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

C_Profitcentertemp

DDL: C_PROFITCENTERTEMP SQL: CPROFITTEMP Type: view CONSUMPTION

Profit Center Value Help

C_Profitcentertemp is a Consumption CDS View that provides data about "Profit Center Value Help" in SAP S/4HANA. It reads from 1 data source (I_ProfitCenter) and exposes 6 fields with key fields ProfitCenter, ControllingArea, ValidityEndDate. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProfitCenter I_ProfitCenter from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ProfitCenterText _Text $projection.ProfitCenter = _Text.ProfitCenter and $projection.ControllingArea = _Text.ControllingArea and $projection.ValidityEndDate = _Text.ValidityEndDate
[1..1] I_ControllingArea _ControllingArea $projection.ControllingArea = _ControllingArea.ControllingArea

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPROFITTEMP view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
ObjectModel.representativeKey ProfitCenter view
EndUserText.label Profit Center Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ProfitCenterStdVH view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ProfitCenter ProfitCenter Profit Center
KEY ControllingArea ControllingArea Controlling Area
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
_ControllingArea _ControllingArea
_Text _Text

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_Profitcentertemp.
-- 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: CPROFITTEMP

CREATE VIEW C_Profitcentertemp AS
SELECT
  ProfitCenter,
  ControllingArea,
  ValidityEndDate,
  ValidityStartDate
FROM I_ProfitCenter
LEFT OUTER JOIN I_ProfitCenterText AS _Text ON ProfitCenter = _Text.ProfitCenter AND ControllingArea = _Text.ControllingArea AND ValidityEndDate = _Text.ValidityEndDate  -- association [0..*]
LEFT OUTER JOIN I_ControllingArea AS _ControllingArea ON ControllingArea = _ControllingArea.ControllingArea  -- association [1..1]
;