E_CustomerProject

DDL: E_CUSTOMERPROJECT SQL: EICUSTPROJECT Type: view EXTENSION

Customer Project

E_CustomerProject is a Extension CDS View that provides data about "Customer Project" in SAP S/4HANA. It reads from 1 data source (/cpd/d_mp_hdr) and exposes 1 field with key field CustomerProject.

Data Sources (1)

SourceAliasJoin Type
/cpd/d_mp_hdr Persistence from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName EICUSTPROJECT view
EndUserText.label Customer Project view
ClientHandling.algorithm #AUTOMATED view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY CustomerProject /cpd/d_mp_hdr mp_id Cust Project ID

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 E_CustomerProject.
-- 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: EICUSTPROJECT

CREATE VIEW E_CustomerProject AS
SELECT
  Persistence.mp_id AS CustomerProject
FROM /cpd/d_mp_hdr AS Persistence
;