I_ProjectText

DDL: I_PROJECTTEXT SQL: IPROJECTTEXT Type: view BASIC

Project Language based description

I_ProjectText is a Basic CDS View that provides data about "Project Language based description" in SAP S/4HANA. It reads from 1 data source (cnldst_shorttx) and exposes 3 fields with key fields ProjectObject, Language.

Data Sources (1)

SourceAliasJoin Type
cnldst_shorttx cnldst_shorttx from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPROJECTTEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Project Language based description view
ObjectModel.representativeKey ProjectObject view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProjectObject objnr Project Object
KEY Language language Language
ProjectLangBsdDescription shorttext Project Lang Bsd 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 I_ProjectText.
-- 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: IPROJECTTEXT

CREATE VIEW I_ProjectText AS
SELECT
  objnr AS ProjectObject,
  Language,
  shorttext AS ProjectLangBsdDescription
FROM cnldst_shorttx
;