I_ProjPortfolioInitvObjectLink

DDL: I_PROJPORTFOLIOINITVOBJECTLINK Type: view_entity BASIC

Project Portfolio Object Link Initiative

I_ProjPortfolioInitvObjectLink (Basic)

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

R&D Engineering

I_ProjPortfolioInitvObjectLink is a Basic CDS View that provides data about "Project Portfolio Object Link Initiative" in SAP S/4HANA. It reads from 1 data source (dpr_objlink) and exposes 14 fields with key field ProjectPortfolioObjectLinkUUID. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Portfolio Management
StatusReleased
Purpose
This CDS view provides a list of Object Links for Project Portfolio Initiative. It is not intended for use in SAP S/4HANA cloud.

Structure
Measures and Attributes Some important attributes are ProjectPortfolioObjectLinkUUID, ProjectPortfolioObjectUUID, ObjectLinkType, ProjectPortfolioInitiativeUUID, ProjectPortfolioUUID, PrjPrtfloObjLnkObjectKeyValue, PrjPrtfloObjectLinkDescription, CreatedByUser, CreatedOnDateTime, LastChangedByUser, LastChangeDateTime .

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentPPM-PFM
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dpr_objlink dpr_objlink from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_DevProjObjectLinkType _DevProjObjectLinkType $projection.ObjectLinkType = _DevProjObjectLinkType.ObjectLinkType
[0..1] I_ProjPrtfloItmDecisionPoint _ProjPrtfloItmDecisionPoint $projection.ProjectPortfolioObjectUUID = _ProjPrtfloItmDecisionPoint.ProjPrtfloItmDcsnPointUUID

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Project Portfolio Object Link Initiative view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey ProjectPortfolioObjectLinkUUID view
ObjectModel.modelingPattern #NONE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
Analytics.technicalName IPROJPRTFLONITVOBJECTLINK view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ProjectPortfolioObjectLinkUUID Guid for application objects
ProjectPortfolioObjectUUID dpr_objlink project_guid Application Object GUID
ObjectLinkType dpr_objlink object_type Type of Linked Object
PrjPrtfloObjLnkObjectKeyValue dpr_objlink object_key UUID
PrjPrtfloObjectLinkDescription dpr_objlink description Well Code Des.
CreatedByUser dpr_objlink created_by Version Created By
CreatedOnDateTime UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
LastChangedByUser dpr_objlink changed_by Last Changed By
LastChangeDateTime UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
PrjPrtfloObjLinkLogicalSystem _DevProjObjectLinkType PrjPrtfloObjLinkLogicalSystem Logical system
ProjectPortfolioInitiativeUUID I_ProjectPortfolioInitiative ProjectPortfolioInitiativeUUID Unique Identifier
ProjectPortfolioUUID I_ProjectPortfolioInitiative ProjectPortfolioUUID Guid for application objects
Exposeassociation_DevProjObjectLinkType
_ProjPrtfloItmDecisionPoint _ProjPrtfloItmDecisionPoint

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_ProjPortfolioInitvObjectLink.
-- 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_ProjPortfolioInitvObjectLink AS
SELECT
  cast(dpr_objlink.guid as rpm_tv_guid preserving type ) AS ProjectPortfolioObjectLinkUUID,
  dpr_objlink.project_guid AS ProjectPortfolioObjectUUID,
  dpr_objlink.object_type AS ObjectLinkType,
  dpr_objlink.object_key AS PrjPrtfloObjLnkObjectKeyValue,
  dpr_objlink.description AS PrjPrtfloObjectLinkDescription,
  dpr_objlink.created_by AS CreatedByUser,
  cast(dpr_objlink.created_on as timestamp preserving type) AS CreatedOnDateTime,
  dpr_objlink.changed_by AS LastChangedByUser,
  cast(dpr_objlink.changed_on as timestamp preserving type) AS LastChangeDateTime,
  _DevProjObjectLinkType.PrjPrtfloObjLinkLogicalSystem AS PrjPrtfloObjLinkLogicalSystem,
  I_ProjectPortfolioInitiative.ProjectPortfolioInitiativeUUID AS ProjectPortfolioInitiativeUUID,
  I_ProjectPortfolioInitiative.ProjectPortfolioUUID AS ProjectPortfolioUUID
FROM dpr_objlink
LEFT OUTER JOIN I_DevProjObjectLinkType AS _DevProjObjectLinkType ON ObjectLinkType = _DevProjObjectLinkType.ObjectLinkType  -- association [0..1]
LEFT OUTER JOIN I_ProjPrtfloItmDecisionPoint AS _ProjPrtfloItmDecisionPoint ON ProjectPortfolioObjectUUID = _ProjPrtfloItmDecisionPoint.ProjPrtfloItmDcsnPointUUID  -- association [0..1]
;