P_ENGMTPROJSDM

DDL: P_ENGMTPROJSDM SQL: PENGMTPRJSDM Type: view BASIC

P_ENGMTPROJSDM is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (/cpd/d_mp_hdr) and exposes 4 fields with key field db_key.

Data Sources (1)

SourceAliasJoin Type
/cpd/d_mp_hdr /cpd/d_mp_hdr from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PENGMTPRJSDM view
VDM.private true view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY db_key /cpd/d_mp_hdr db_key UUID
mandt /cpd/d_mp_hdr mandt Editing Client
mp_id /cpd/d_mp_hdr mp_id Cust Project ID
guid /s4ppm/project guid UUID 22 char.

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 P_ENGMTPROJSDM.
-- 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: PENGMTPRJSDM

CREATE VIEW P_ENGMTPROJSDM AS
SELECT
  /cpd/d_mp_hdr.db_key AS db_key,
  /cpd/d_mp_hdr.mandt AS mandt,
  /cpd/d_mp_hdr.mp_id AS mp_id,
  /s4ppm/project.guid AS guid
FROM /cpd/d_mp_hdr
;