C_ProjectProfitCenter

DDL: C_PROJECTPROFITCENTER SQL: CPPROFITCENTER Type: view CONSUMPTION

Project Profit Center

C_ProjectProfitCenter is a Consumption CDS View that provides data about "Project Profit Center" in SAP S/4HANA.

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CPPROFITCENTER view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Project Profit Center view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProfitCenter I_ProfitCenter ProfitCenter Profit Center
ProfitCenterName I_ProfitCenterText ProfitCenterName Profit Center Name
ProfitCtrResponsiblePersonName I_ProfitCenter ProfitCtrResponsiblePersonName Person Responsible

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_ProjectProfitCenter.
-- 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: CPPROFITCENTER

CREATE VIEW C_ProjectProfitCenter AS
SELECT
  I_ProfitCenter.ProfitCenter AS ProfitCenter,
  I_ProfitCenterText.ProfitCenterName AS ProfitCenterName,
  I_ProfitCenter.ProfitCtrResponsiblePersonName AS ProfitCtrResponsiblePersonName
;