I_EnterpriseProjectTP_3

DDL: I_ENTERPRISEPROJECTTP_3 Type: view_entity TRANSACTIONAL

Enterprise Project - TP

I_EnterpriseProjectTP_3 is a Transactional CDS View that provides data about "Enterprise Project - TP" in SAP S/4HANA. It reads from 1 data source (I_EnterpriseProjectTP_2) and exposes 40 fields with key field ProjectUUID.

Data Sources (1)

SourceAliasJoin Type
I_EnterpriseProjectTP_2 I_EnterpriseProjectTP_2 projection

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.sapObjectNodeType.name EnterpriseProject view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Enterprise Project - TP view

Fields (40)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID ProjectUUID Project UUID
ProjectSummaryTaskUUID ProjectSummaryTaskUUID Entity GUID
ProjectInternalID ProjectInternalID Project Def.
Project Project WBS Element
ProjectCategory ProjectCategory Proj. Category
ProjectDescription ProjectDescription Project Name
EnterpriseProjectType EnterpriseProjectType Proj.type
PriorityCode PriorityCode Priority
ProjectStartDate ProjectStartDate Latest Planned Start
ProjectEndDate ProjectEndDate Ltst Planned Finish
ActualStartDate ActualStartDate Actual Start
ActualEndDate ActualEndDate Actual Finish
CustomerUUID CustomerUUID NodeID
EnterpriseProjectServiceOrg EnterpriseProjectServiceOrg Service Org.
EntProjectIsConfidential EntProjectIsConfidential Confidential
RestrictedTimePosting RestrictedTimePosting Restrict Unstaffed
ProcessingStatus ProcessingStatus Worklist Status
ResponsibleCostCenter ResponsibleCostCenter Responsible Cost Center
ProfitCenter ProfitCenter Profit Center
ProjectProfileCode ProjectProfileCode Project Profile
FunctionalArea FunctionalArea Sendr Fctl Area
CompanyCode CompanyCode Receiver Company Code
ControllingArea ControllingArea Controlling Area
Plant Plant Valuation Area
Location Location Text
TaxJurisdiction TaxJurisdiction Tax Jurisdiction
ProjectCurrency ProjectCurrency Project Currency
AvailabilityControlProfile AvailabilityControlProfile Budget Availability Control Profile
AvailabilityControlIsActive AvailabilityControlIsActive Budget Availability Control is Active
FunctionalLocation FunctionalLocation Object ID
IsBillingRelevant IsBillingRelevant Billing elem.
InvestmentProfile InvestmentProfile Investment Measure Profile
ProjectLastChangedDateTime ProjectLastChangedDateTime Time Stamp
EntProjIsMultiSlsOrdItmsEnbld EntProjIsMultiSlsOrdItmsEnbld Project Assigned
ResultAnalysisInternalID ResultAnalysisInternalID Results Analysis Key
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
_EnterpriseProjectForUser _EnterpriseProjectForUser

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_EnterpriseProjectTP_3.
-- 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_EnterpriseProjectTP_3 AS
SELECT
  ProjectUUID,
  ProjectSummaryTaskUUID,
  ProjectInternalID,
  Project,
  ProjectCategory,
  ProjectDescription,
  EnterpriseProjectType,
  PriorityCode,
  ProjectStartDate,
  ProjectEndDate,
  ActualStartDate,
  ActualEndDate,
  CustomerUUID,
  EnterpriseProjectServiceOrg,
  EntProjectIsConfidential,
  RestrictedTimePosting,
  ProcessingStatus,
  ResponsibleCostCenter,
  ProfitCenter,
  ProjectProfileCode,
  FunctionalArea,
  CompanyCode,
  ControllingArea,
  Plant,
  Location,
  TaxJurisdiction,
  ProjectCurrency,
  AvailabilityControlProfile,
  AvailabilityControlIsActive,
  FunctionalLocation,
  IsBillingRelevant,
  InvestmentProfile,
  ProjectLastChangedDateTime,
  EntProjIsMultiSlsOrdItmsEnbld,
  ResultAnalysisInternalID,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  LastChangeDateTime
FROM I_EnterpriseProjectTP_2
;