A_EnterpriseProject_2
Project
A_EnterpriseProject_2 is a Composite CDS View that provides data about "Project" in SAP S/4HANA. It reads from 1 data source (I_EnterpriseProjectTP_2) and exposes 43 fields with key field ProjectUUID. It has 2 associations to related views. It is exposed through 1 OData service (ASQL_F7404). Part of development package ODATA_PPM_COMMON_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_EnterpriseProjectTP_2 | I_EnterpriseProjectTP_2 | projection |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | E_PPM_Project | _ProjectHeaderExtension | $projection.ProjectUUID = _ProjectHeaderExtension.ProjectUUID |
| [1..1] | E_PPM_EngagementProject | _EngagementProjectExtension | $projection.ProjectUUID = _EngagementProjectExtension.ProjectUUID |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Project | view | |
| OData.entitySet.name | A_EnterpriseProject | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| ASQL_F7404 | ASQL_F7404 | C2 | NOT_RELEASED |
Fields (43)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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 | ||
| LastChangeDateTime | LastChangeDateTime | Timestamp | ||
| ProjectLastChangedDateTime | ProjectLastChangedDateTime | Time Stamp | ||
| LastChangedByUser | LastChangedByUser | User Name | ||
| EntProjIsMultiSlsOrdItmsEnbld | EntProjIsMultiSlsOrdItmsEnbld | Project Assigned | ||
| ResultAnalysisInternalID | ResultAnalysisInternalID | Results Analysis Key | ||
| CostingSheet | CostingSheet | Costing Sheet | ||
| CreatedByUser | CreatedByUser | User Name | ||
| CreationDateTime | CreationDateTime | Timestamp | ||
| EntProjHasProjectStockEnabled | EntProjHasProjectStockEnabled | Project stock | ||
| InventorySpecialStockValnType | InventorySpecialStockValnType | Valuation | ||
| _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 A_EnterpriseProject_2.
-- 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 A_EnterpriseProject_2 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,
LastChangeDateTime,
ProjectLastChangedDateTime,
LastChangedByUser,
EntProjIsMultiSlsOrdItmsEnbld,
ResultAnalysisInternalID,
CostingSheet,
CreatedByUser,
CreationDateTime,
EntProjHasProjectStockEnabled,
InventorySpecialStockValnType
FROM I_EnterpriseProjectTP_2
LEFT OUTER JOIN E_PPM_Project AS _ProjectHeaderExtension ON ProjectUUID = _ProjectHeaderExtension.ProjectUUID -- association [1..1]
LEFT OUTER JOIN E_PPM_EngagementProject AS _EngagementProjectExtension ON ProjectUUID = _EngagementProjectExtension.ProjectUUID -- association [1..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- OData Services in SAP S/4HANA Explained
- Service Bindings and Service Definitions in SAP S/4HANA
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA