C_ProjPrtfloFinGroupTextDP

DDL: C_PROJPRTFLOFINGROUPTEXTDP Type: view_entity CONSUMPTION

Project Portfolio Financial Group - Text

C_ProjPrtfloFinGroupTextDP is a Consumption CDS View that provides data about "Project Portfolio Financial Group - Text" in SAP S/4HANA. It reads from 1 data source (I_PrjPrtfloFinancialGroupText) and exposes 7 fields with key fields Language, ProjPortfolioFinancialCategory, ProjectPortfolioFinancialGroup. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_PrjPrtfloFinancialGroupText I_PrjPrtfloFinancialGroupText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] C_ProjPrtfloFinCategoryDP _Category $projection.ProjPortfolioFinancialCategory = _Category.ProjPortfolioFinancialCategory
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
Metadata.allowExtensions true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Project Portfolio Financial Group - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #EXTERNAL_DATA_PROVIDER view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProjectPortfolioFinancialGroup view
ObjectModel.sapObjectNodeType.name ProjPrtfloFinancialGroupText view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
KEY ProjPortfolioFinancialCategory PrjPrtfloFinancialCategoryId Violation Category
KEY ProjectPortfolioFinancialGroup PrjPrtfloFinancialGroupId UUID
PrjPrtfloFinancialGroupText PrjPrtfloFinancialGroupText Group Text
_Category _Category
_FinGroup _FinGroup
_Language _Language

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_ProjPrtfloFinGroupTextDP.
-- 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 C_ProjPrtfloFinGroupTextDP AS
SELECT
  Language,
  PrjPrtfloFinancialCategoryId AS ProjPortfolioFinancialCategory,
  PrjPrtfloFinancialGroupId AS ProjectPortfolioFinancialGroup,
  PrjPrtfloFinancialGroupText
FROM I_PrjPrtfloFinancialGroupText
LEFT OUTER JOIN C_ProjPrtfloFinCategoryDP AS _Category ON ProjPortfolioFinancialCategory = _Category.ProjPortfolioFinancialCategory  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;