E_MasterProject

DDL: E_MASTERPROJECT SQL: EMSTRPROJ Type: view EXTENSION

Extension view for Master Project

E_MasterProject is a Extension CDS View that provides data about "Extension view for Master Project" in SAP S/4HANA. It reads from 1 data source (/cpd/d_mp_hdr) and exposes 2 fields with key fields MasterProjectUUID, MasterProject.

Data Sources (1)

SourceAliasJoin Type
/cpd/d_mp_hdr Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName EMSTRPROJ view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #EXTENSION view
EndUserText.label Extension view for Master Project view
ClientHandling.algorithm #AUTOMATED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MasterProjectUUID /cpd/d_mp_hdr db_key UUID
KEY MasterProject /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_MasterProject.
-- 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: EMSTRPROJ

CREATE VIEW E_MasterProject AS
SELECT
  Persistence.db_key AS MasterProjectUUID,
  Persistence.mp_id AS MasterProject
FROM /cpd/d_mp_hdr AS Persistence
;