P_CnsldtnProjectT

DDL: P_CNSLDTNPROJECTT SQL: PCSPROJECTT Type: view COMPOSITE

P_CnsldtnProjectT is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_CnsldtnAddlMD, I_Project) and exposes 11 fields with key fields Language, Project, Project.

Data Sources (2)

SourceAliasJoin Type
I_CnsldtnAddlMD I_CnsldtnAddlMD union_all
I_Project I_Project from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PCSPROJECTT view
VDM.viewType #COMPOSITE view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY Project Project Record ID
AdditionalMasterDataSource
CnsldtnIsAdditionalMasterData
AdditionalMasterDataText ProjectDescription Short Description
LanguageasLanguage
KEY Project AdditionalMasterDataCode Record ID
AdditionalMasterDataSource
CnsldtnIsAdditionalMasterData
AdditionalMasterDataText _Text AdditionalMasterDataText Short Description
ProjectDescription _Text AdditionalMasterDataText Short Description

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_CnsldtnProjectT.
-- 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.
-- SQL view name: PCSPROJECTT

CREATE VIEW P_CnsldtnProjectT AS
SELECT
  cast ( $session.system_language as spras ) AS Language,
  Project,
  cast ( 'ACCTG' as fincs_md_source ) AS AdditionalMasterDataSource,
  cast ( ' ' as fincs_isadditionalmasterdata preserving type ) AS CnsldtnIsAdditionalMasterData,
  ProjectDescription AS AdditionalMasterDataText,
  ProjectDescription AS LanguageasLanguage,
  _Text.AdditionalMasterDataText AS ProjectDescription
FROM I_Project
-- UNION ALL with additional select branch(es): I_CnsldtnAddlMD
;