I_USFedProjectBasicDataVH

DDL: I_USFEDPROJECTBASICDATAVH Type: view_entity BASIC

USFed Project Details

I_USFedProjectBasicDataVH (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_USFedProjectBasicDataVH is a Basic CDS View (Dimension) that provides data about "USFed Project Details" in SAP S/4HANA. It reads from 1 data source (I_ProjectBasicData) and exposes 6 fields with key field USFedProjectIdentifier. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-FG
CapabilitiesData Provider for Value Help, Analytical Dimension, Association Target for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_ProjectBasicData I_ProjectBasicData from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ControllingArea _ControllingArea $projection.ControllingArea = _ControllingArea.ControllingArea
[0..*] I_ProfitCenter _ProfitCenter2 $projection.ControllingArea = _ProfitCenter2.ControllingArea and $projection.ProfitCenter = _ProfitCenter2.ProfitCenter

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.allowExtensions true view
EndUserText.label USFed Project Details view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
ObjectModel.representativeKey USFedProjectIdentifier view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Search.searchable true view
Consumption.ranked true view
Analytics.internalName #LOCAL view
Analytics.dataCategory #DIMENSION view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY USFedProjectIdentifier ProjectExternalID Project Number (External) Edited
ProjectDescription ProjectDescription Project Name
ControllingArea ControllingArea Controlling Area
ProfitCenter ProfitCenter Profit Center
_ControllingArea _ControllingArea
_ProfitCenter2 _ProfitCenter2

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_USFedProjectBasicDataVH.
-- 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_USFedProjectBasicDataVH AS
SELECT
  ProjectExternalID AS USFedProjectIdentifier,
  ProjectDescription,
  ControllingArea,
  ProfitCenter
FROM I_ProjectBasicData
LEFT OUTER JOIN I_ControllingArea AS _ControllingArea ON ControllingArea = _ControllingArea.ControllingArea  -- association [0..1]
LEFT OUTER JOIN I_ProfitCenter AS _ProfitCenter2 ON ControllingArea = _ProfitCenter2.ControllingArea AND ProfitCenter = _ProfitCenter2.ProfitCenter  -- association [0..*]
;