P_MstrProjActyDesc

DDL: P_MSTRPROJACTYDESC SQL: PMPACTYDESC Type: view BASIC

P_MstrProjActyDesc is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (/bobf/d_txcroot, I_MasterProjectActivityRoot) and exposes 5 fields.

Data Sources (2)

SourceAliasJoin Type
/bobf/d_txcroot DescRoot inner
I_MasterProjectActivityRoot Root from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PMPACTYDESC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.private true view

Fields (5)

KeyFieldSource TableSource FieldDescription
ActivityUUID I_MasterProjectActivityRoot ActivityUUID Activity UUID
MstrProjActivityId I_MasterProjectActivityRoot MstrProjActivityId IMG Activity
OriginApplication I_MasterProjectActivityRoot OriginApplication Origin Application
ActivityType I_MasterProjectActivityRoot ActivityType Activity Type
ReferencedNodeUUID /bobf/d_txcroot db_key UUID

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_MstrProjActyDesc.
-- 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: PMPACTYDESC

CREATE VIEW P_MstrProjActyDesc AS
SELECT
  Root.ActivityUUID AS ActivityUUID,
  Root.MstrProjActivityId AS MstrProjActivityId,
  Root.OriginApplication AS OriginApplication,
  Root.ActivityType AS ActivityType,
  DescRoot.db_key AS ReferencedNodeUUID
FROM I_MasterProjectActivityRoot AS Root
INNER JOIN /bobf/d_txcroot AS DescRoot ON /* join condition not captured in parsed metadata */
;