I_MM_ProfitCenterValueHelp

DDL: I_MM_PROFITCENTERVALUEHELP SQL: IMMPRFCTRVH Type: view BASIC

Purchasing Profit Center Value Help

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

Data Sources (1)

SourceAliasJoin Type
I_ProfitCenter ProfitCenter from

Associations (1)

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

Annotations (14)

NameValueLevelField
VDM.viewType #BASIC view
EndUserText.label Purchasing Profit Center Value Help view
AbapCatalog.sqlViewName IMMPRFCTRVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea I_ProfitCenter ControllingArea Controlling Area
KEY ProfitCenter I_ProfitCenter ProfitCenter Profit Center
KEY ValidityEndDate I_ProfitCenter ValidityEndDate ValidTo
ProfitCtrResponsiblePersonName I_ProfitCenter ProfitCtrResponsiblePersonName Person Respons.
ProfitCtrResponsibleUser I_ProfitCenter ProfitCtrResponsibleUser User Responsible
_Text _Text
_ControllingArea _ControllingArea

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 I_MM_ProfitCenterValueHelp.
-- 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: IMMPRFCTRVH

CREATE VIEW I_MM_ProfitCenterValueHelp AS
SELECT
  ProfitCenter.ControllingArea AS ControllingArea,
  ProfitCenter.ProfitCenter AS ProfitCenter,
  ProfitCenter.ValidityEndDate AS ValidityEndDate,
  ProfitCenter.ProfitCtrResponsiblePersonName AS ProfitCtrResponsiblePersonName,
  ProfitCenter.ProfitCtrResponsibleUser AS ProfitCtrResponsibleUser
FROM I_ProfitCenter AS ProfitCenter
LEFT OUTER JOIN I_ProfitCenterText AS _Text ON ControllingArea = _Text.ControllingArea AND ProfitCenter = _Text.ProfitCenter AND ValidityEndDate = _Text.ValidityEndDate  -- association [0..*]
;