I_EngagementProjectAttribute

DDL: I_ENGAGEMENTPROJECTATTRIBUTE Type: view COMPOSITE

Attribute of Engagement Project

I_EngagementProjectAttribute (Composite)

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_EngagementProjectAttribute is a Composite CDS View (Dimension) that provides data about "Attribute of Engagement Project" in SAP S/4HANA. It reads from 1 data source (I_EngagementProject) and exposes 21 fields with key field EngagementProject.

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentCA-CPD-SS
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source in SQL Select
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_EngagementProject I_EngagementProject from

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IENGMNTPROJATTR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Attribute of Engagement Project view
ObjectModel.representativeKey EngagementProject view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #COMPOSITE view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY EngagementProject EngagementProject Engagement Project ID
EngagementProjectUUID EngagementProjectUUID Engagement Project UUID
EngagementProjectName EngagementProjectName Customer Project Name
EngmntProjNameUprCase EngmntProjNameUprCase Short Text(Upper case)
EngagementProjectType EngagementProjectType Engagement Project Type
EngagementProjectServiceOrg EngagementProjectServiceOrg Service Organization
EngagementProjectCategory EngagementProjectCategory Project Type
ProjectManager ProjectManager Project Manager
ProjectManagerWorkAgreement ProjectManagerWorkAgreement
ProjectManagerExternalID Project Manager External ID
ProfitCenter ProfitCenter Profit Center
Customer Customer Customer Number
ProjectProfileCode ProjectProfileCode Project Profile
CompanyCode CompanyCode Company code for the project
CostCenter Cost Center
ProjectVisibility ProjectVisibility Confidential Indicator for Commercial Project
_EngagementProjFinancialPlan _EngagementProjFinancialPlan
_Customer _Customer
_PersonWorkAgreement _PersonWorkAgreement
_PersonWorkAgreement_1 _PersonWorkAgreement_1
_UserInvlmnt _UserInvlmnt

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_EngagementProjectAttribute.
-- 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_EngagementProjectAttribute AS
SELECT
  EngagementProject,
  EngagementProjectUUID,
  EngagementProjectName,
  EngmntProjNameUprCase,
  EngagementProjectType,
  EngagementProjectServiceOrg,
  EngagementProjectCategory,
  ProjectManager,
  ProjectManagerWorkAgreement,
  _PersonWorkAgreement_1._PersonWorkAgrmtToExternalID.PersonWorkAgreementExternalID AS ProjectManagerExternalID,
  ProfitCenter,
  Customer,
  ProjectProfileCode,
  CompanyCode,
  cast( CostCenter as fis_kostl ) AS CostCenter,
  ProjectVisibility
FROM I_EngagementProject
;