C_EngmntProjUnbilledRevenueQry

DDL: C_ENGMNTPROJUNBILLEDREVENUEQRY Type: view CONSUMPTION Package: CPD_CDS

Engagement Project Unbilled Revenue Query

C_EngmntProjUnbilledRevenueQry (Consumption)

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

R&D Engineering

C_EngmntProjUnbilledRevenueQry is a Consumption CDS View that provides data about "Engagement Project Unbilled Revenue Query" in SAP S/4HANA. It reads from 1 data source (I_EngmntProjUnbilldRevnCube) and exposes 20 fields. Part of development package CPD_CDS.

SAP Help Documentation

CategoryCDS Views for Customer and Internal Project Management
Data CategoryQuery
StatusReleased
Corresponding DataSource2CCENGPRJUNBREVQY
Purpose
This CDS view provides the prerequisites for answering the following business questions. Note that information is retrieved only from the leading ledger. What is the unbilled amount in projects that I manage? What is the unbilled amount per billing item type (fixed price, time and expense, and so on)?

Prerequisites
Users who want to run reports using this CDS view must have a role based on the business role template listed in the table above. In this role, the following restriction types must be set to read access: Service Organization Project Type Project Category These restriction types are edited in the Maintain Business Roles app. Note To view the details of projects that involve blocked customers or business partners, you must have the additional authorization of an external auditor.

Structure
Object types This view is built on the following object types: Engagement Project Sales Order Main CDS parameters and filters The main parameters are as follows: Engagement Project can be used retrieve results using on project IDs. Project Stage can be used to retrieve information from customer projects that are in the following stages: P003 (In Execution) P004 (Completed) P005 (Closed) Sales Order can be used to retrieve information for a specific sales order. Sales Order Item can be used to retrieve information for a specific sales order item. Service Organization can be used to filter results based on the service organization assigned to projects. Company Code can be used to filter results using a company code. Profit Center can be used to filter results using profit center IDs. Cost Center can be used to filter results using cost center IDs. Note The values in the input help are not dependent on the authorizations in your business role. However, the search results are. Customer can be used to filter results based on the customer assigned to projects. The main filters are: My Projects This field can be used to filter projects based on the user's assignment to any of the project roles. Enter X to retrieve only the user's projects or enter ' ' to retrieve projects that the user is authorized to access. Tip To experience optimal performance in filtering and displaying results, it is recommended that you use this parameter in combination with other parameters. Measures and attributes Some important measures and attributes are:

View on SAP Help Portal →

SAP API Hub

CategoryConsumption
StateC1
Line of BusinessR&D Engineering
Application ComponentCA-CPD-SS
CapabilitiesAnalytical Query
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageR&D/Engineering for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li> <p>What is the unbilled amount in projects that I manage?</p> </li> <li> <p>What is the unbilled amount per billing item type (fixed price, time and expense, and so on)?</p> </li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_EngmntProjUnbilldRevnCube I_EngmntProjUnbilldRevnCube from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CENGPRJUNBREVQY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.query true view
Analytics.internalName #LOCAL view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.modelingPattern #ANALYTICAL_QUERY view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Engagement Project Unbilled Revenue Query view

Fields (20)

KeyFieldSource TableSource FieldDescription
Ledger Ledger Ledger in General Ledger Accounting
ProjectManagerName ProjectManagerName
EngagementProject EngagementProject Engagement Project ID
ProjectVisibility ProjectVisibility Confidential Indicator for Commercial Project
SalesOrder SalesOrder SD Document
SalesOrderItem SalesOrderItem Sales Order Item
EngagementProjectServiceOrg EngagementProjectServiceOrg Service Organization
ProjectStartDate ProjectStartDate Commercial Project: Start Date
ProjectEndDate ProjectEndDate Commercial Project: End Date
ControllingArea ControllingArea Controlling area for the project
CompanyCode CompanyCode Company code for the project
ProfitCenter ProfitCenter Profit Center
CostCenter CostCenter Organization Unit Key
Customer Customer Customer Number
EngagementProjectStage EngagementProjectStage Commercial Project: Stage
SalesOrderItemCategory SalesOrderItemCategory Sales Document Item Category
Material Material Vehicle Model
IsMyProject IsMyProject
FiscalYearPeriod FiscalYearPeriod Period/Year
UnbilldRevnAmountInProjCrcy 1 Unbilled Revenue

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 C_EngmntProjUnbilledRevenueQry.
-- 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 C_EngmntProjUnbilledRevenueQry AS
SELECT
  Ledger,
  ProjectManagerName,
  EngagementProject,
  ProjectVisibility,
  SalesOrder,
  SalesOrderItem,
  EngagementProjectServiceOrg,
  ProjectStartDate,
  ProjectEndDate,
  ControllingArea,
  CompanyCode,
  ProfitCenter,
  CostCenter,
  Customer,
  EngagementProjectStage,
  SalesOrderItemCategory,
  Material,
  IsMyProject,
  FiscalYearPeriod,
  1 AS UnbilldRevnAmountInProjCrcy
FROM I_EngmntProjUnbilldRevnCube
;