P_EventBasedWIPLogHeader

DDL: P_EVENTBASEDWIPLOGHEADER SQL: PEBWORDLOGH Type: view BASIC

P_EventBasedWIPLogHeader is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (P_EventBasedWIPLogHeaderData) and exposes 12 fields with key field LogNumber.

Data Sources (1)

SourceAliasJoin Type
P_EventBasedWIPLogHeaderData P_EventBasedWIPLogHeaderData from

Annotations (9)

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

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY LogNumber LogNumber UUID
LogHandle LogHandle LogsHandle
LogMessageText LogMessageText
ApplicationLogObject ApplicationLogObject TRFM Object
ApplicationLogSubobject ApplicationLogSubobject Triggering obj.
EvtBsdOrdRefTransText EvtBsdOrdRefTransText Short Description
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
CreationTime CreationTime Time of Change
OrderID OrderID Order ID
ControllingObject ControllingObject Object number
Severity Severity Thresh.Val. Severity

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_EventBasedWIPLogHeader.
-- 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: PEBWORDLOGH

CREATE VIEW P_EventBasedWIPLogHeader AS
SELECT
  LogNumber,
  LogHandle,
  LogMessageText,
  ApplicationLogObject,
  ApplicationLogSubobject,
  EvtBsdOrdRefTransText,
  CreatedByUser,
  CreationDate,
  CreationTime,
  OrderID,
  ControllingObject,
  Severity
FROM P_EventBasedWIPLogHeaderData
;