P_ProjBillgCustProjVH

DDL: P_PROJBILLGCUSTPROJVH Type: view_entity COMPOSITE

P_ProjBillgCustProjVH is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_EnterpriseProject) and exposes 20 fields with key field ProjectUUID.

Data Sources (1)

SourceAliasJoin Type
I_EnterpriseProject _EnterpriseProject from

Annotations (6)

NameValueLevelField
VDM.private true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID ProjectUUID Project UUID
Project Project Project
ProjectDescription ProjectDescription Project Description
EnterpriseProjectServiceOrg EnterpriseProjectServiceOrg Service Org.
ProjectProfileCode ProjectProfileCode Project Profile
ProjectCategory ProjectCategory Proj. Category
EntProjectIsConfidential EntProjectIsConfidential Confidential
CompanyCode CompanyCode Receiver Company Code
ResponsibleCostCenter ResponsibleCostCenter Responsible Cost Center
ProfitCenter ProfitCenter Profit Center
ControllingArea ControllingArea Controlling Area
ProjectSummaryTaskUUID I_EnterpriseProject ProjectSummaryTaskUUID Entity GUID
_AuthGroup _AuthGroup
_AuthRole _AuthRole
_AuthSubst _AuthSubst
_AuthUser _AuthUser
Plant Plant Valuation Area
_EnterpriseProjectForUser _EnterpriseProjectForUser
EnterpriseProjectType EnterpriseProjectType Proj.type
FunctionalArea FunctionalArea Sendr Fctl Area

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 P_ProjBillgCustProjVH.
-- 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 P_ProjBillgCustProjVH AS
SELECT
  ProjectUUID,
  Project,
  ProjectDescription,
  EnterpriseProjectServiceOrg,
  ProjectProfileCode,
  ProjectCategory,
  EntProjectIsConfidential,
  CompanyCode,
  ResponsibleCostCenter,
  ProfitCenter,
  ControllingArea,
  _EnterpriseProject.ProjectSummaryTaskUUID AS ProjectSummaryTaskUUID,
  Plant,
  EnterpriseProjectType,
  FunctionalArea
FROM I_EnterpriseProject AS _EnterpriseProject
;