I_PrjPrtfloFinancialGroup

DDL: I_PRJPRTFLOFINANCIALGROUP Type: view_entity BASIC

Project Portfolio Financial Groups

I_PrjPrtfloFinancialGroup is a Basic CDS View that provides data about "Project Portfolio Financial Groups" in SAP S/4HANA. It reads from 1 data source (/rpm/fin_groups) and exposes 4 fields with key fields PrjPrtfloFinancialCategoryId, PrjPrtfloFinancialGroupId. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/rpm/fin_groups /rpm/fin_groups from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PrjPrtfloFinancialGroupText _Text $projection.PrjPrtfloFinancialCategoryId = _Text.PrjPrtfloFinancialCategoryId and $projection.PrjPrtfloFinancialGroupId = _Text.PrjPrtfloFinancialGroupId

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Project Portfolio Financial Groups view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.entityBuffer.definitionAllowed true view
ObjectModel.representativeKey PrjPrtfloFinancialGroupId view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.sapObjectNodeType.name ProjectPortfolioFinancialGroup view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PrjPrtfloFinancialCategoryId category Violation Category
KEY PrjPrtfloFinancialGroupId group_id UUID
_Text _Text
_Category _Category

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_PrjPrtfloFinancialGroup.
-- 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.

CREATE VIEW I_PrjPrtfloFinancialGroup AS
SELECT
  category AS PrjPrtfloFinancialCategoryId,
  group_id AS PrjPrtfloFinancialGroupId
FROM /rpm/fin_groups
LEFT OUTER JOIN I_PrjPrtfloFinancialGroupText AS _Text ON PrjPrtfloFinancialCategoryId = _Text.PrjPrtfloFinancialCategoryId AND PrjPrtfloFinancialGroupId = _Text.PrjPrtfloFinancialGroupId  -- association [0..*]
;