I_EntProjectLongText

DDL: I_ENTPROJECTLONGTEXT SQL: IENTPROJLTXT Type: view BASIC Package: VDM_PPM_OBJECTS_PROJECT

Enterprise Project Description

I_EntProjectLongText is a Basic CDS View that provides data about "Enterprise Project Description" in SAP S/4HANA. It reads from 1 data source (I_PPM_Task) and exposes 2 fields with key field ProjectUUID. Part of development package VDM_PPM_OBJECTS_PROJECT.

Data Sources (1)

SourceAliasJoin Type
I_PPM_Task ProjectElement from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IENTPROJLTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey ProjectUUID view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Enterprise Project Description view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID I_PPM_Task ProjectUUID Project UUID
LongText LongText longtext_string Comments

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 I_EntProjectLongText.
-- 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: IENTPROJLTXT

CREATE VIEW I_EntProjectLongText AS
SELECT
  ProjectElement.ProjectUUID AS ProjectUUID,
  LongText.longtext_string AS LongText
FROM I_PPM_Task AS ProjectElement
;