P_CnsldtnProjectT

DDL: P_CNSLDTNPROJECTT SQL: PCSPROJECTT Type: view BASIC

P_CnsldtnProjectT is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_CnsldtnAddlMD, I_Project) and exposes 7 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 #BASIC 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 (7)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY Project Project Record ID
AdditionalMasterDataSource
LanguageasLanguage
KEY Project AdditionalMasterDataCode Record ID
AdditionalMasterDataSource
AdditionalMasterDataText _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,
  ProjectDescription as AdditionalMasterDataText AS LanguageasLanguage,
  _Text.AdditionalMasterDataText AS AdditionalMasterDataText
FROM I_Project
-- UNION ALL with additional select branch(es): I_CnsldtnAddlMD
;