A_CnsldtnProjectT

DDL: A_CNSLDTNPROJECTT SQL: ACSPROJECTT Type: view COMPOSITE

Combined Project Text

A_CnsldtnProjectT is a Composite CDS View that provides data about "Combined Project Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnProjectT) and exposes 4 fields with key fields Language, Project. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnProjectT _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnProject _CnsldtnProject $projection.Project = _CnsldtnProject.Project

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACSPROJECTT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Combined Project Text view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entitySet.name ProjectText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language I_CnsldtnProjectT Language Report Text Language
KEY Project I_CnsldtnProjectT Project WBS Element
CnsldtnProjectText
_CnsldtnProject _CnsldtnProject

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_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: ACSPROJECTT

CREATE VIEW A_CnsldtnProjectT AS
SELECT
  _Source.Language AS Language,
  _Source.Project AS Project,
  cast(_Source.AdditionalMasterDataText as fincs_ps_pspid_t preserving type) AS CnsldtnProjectText
FROM I_CnsldtnProjectT AS _Source
LEFT OUTER JOIN A_CnsldtnProject AS _CnsldtnProject ON Project = _CnsldtnProject.Project  -- association [0..1]
;