Pph_Ddl_Perflog_Header

DDL: PPH_DDL_PERFLOG_HEADER SQL: V_PPH_PF_HD_KF1 Type: view

Aggregated MRP Performance data per Log

Pph_Ddl_Perflog_Header is a CDS View that provides data about "Aggregated MRP Performance data per Log" in SAP S/4HANA. It reads from 1 data source (pphmrplog) and exposes 21 fields with key field uuid.

Data Sources (1)

SourceAliasJoin Type
pphmrplog header from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName V_PPH_PF_HD_KF1 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Aggregated MRP Performance data per Log view
OData.publish true view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY uuid pphmrplog uuid Waste Partner UUID
mrpstart_ts
mrpend_ts
uname pphmrplog uname User Name
regen pphmrplog regen Regenerat. Pln.
comps pphmrplog comps Components
plall pphmrplog plall Order BOM Comp.
trans pphmrplog trans Univ. Journ. Integr.
plmod pphmrplog plmod Planning Mode
scope
vertr
trmpl
maximumofnumbersusedinPLAFs
mrp_comment
wo_auth pphmrplog wo_auth Not Authorized
not_locked pphmrplog not_locked No. Not Locked
selstring
error_string pphmrplog error_string Error Text
jobcount
jobname pphmrplog jobname Name of Send Process
stepcount pphmrplog stepcount Step no.

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 Pph_Ddl_Perflog_Header.
-- 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: V_PPH_PF_HD_KF1

CREATE VIEW Pph_Ddl_Perflog_Header AS
SELECT
  header.uuid AS uuid,
  cast(header.start_time as pph_mrp_start_ts) AS mrpstart_ts,
  cast(header.end_time as pph_mrp_end_ts) AS mrpend_ts,
  header.uname AS uname,
  header.regen AS regen,
  header.comps AS comps,
  header.plall AS plall,
  header.trans AS trans,
  header.plmod AS plmod,
  cast(case coalesce(header.scope,' ') when ' ' then 'A' else header.scope end as pph_mrp_scope) AS scope,
  cast(case coalesce(header.trmpl,' ') when ' ' then '1' else header.trmpl end as trmpl) AS trmpl,
  header.wo_auth AS wo_auth,
  header.not_locked AS not_locked,
  header.error_string AS error_string,
  header.jobname AS jobname,
  header.stepcount AS stepcount
FROM pphmrplog AS header
;