I_CustomerProjectText

DDL: I_CUSTOMERPROJECTTEXT SQL: ICustProjectT Type: view BASIC

Customer Project Text

I_CustomerProjectText is a Basic CDS View that provides data about "Customer Project Text" in SAP S/4HANA. It reads from 1 data source (/cpd/d_mp_hdr_s) and exposes 5 fields with key fields CustomerProjectUUID, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/cpd/d_mp_hdr_s /cpd/d_mp_hdr_s from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CustomerProject _CustomerProject $projection.CustomerProjectUUID = _CustomerProject.CustomerProjectUUID
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName ICustProjectT view
EndUserText.label Customer Project Text view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CustomerProjectUUID UUID
KEY Language /cpd/d_mp_hdr_s language_code Language Code
CustomerProjectName text User Group
_CustomerProject _CustomerProject
_Language _Language

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_CustomerProjectText.
-- 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: ICustProjectT

CREATE VIEW I_CustomerProjectText AS
SELECT
  cast(parent_key as /cpd/ss_cp_uuid ) AS CustomerProjectUUID,
  /cpd/d_mp_hdr_s.language_code AS Language,
  text AS CustomerProjectName
FROM /cpd/d_mp_hdr_s
LEFT OUTER JOIN I_CustomerProject AS _CustomerProject ON CustomerProjectUUID = _CustomerProject.CustomerProjectUUID  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;