P_EvtBsdOverheadErrorData

DDL: P_EVTBSDOVERHEADERRORDATA Type: view_entity BASIC

Event-Based overhead errors log data

P_EvtBsdOverheadErrorData is a Basic CDS View that provides data about "Event-Based overhead errors log data" in SAP S/4HANA. It reads from 1 data source (fcot_eb_log) and exposes 38 fields with key field LogId.

Data Sources (1)

SourceAliasJoin Type
fcot_eb_log fcot_eb_log from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Event-Based overhead errors log data view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #BASIC view

Fields (38)

KeyFieldSource TableSource FieldDescription
KEY LogId log_id Log UUID
LogType log_type Log Entry Cat.
ReferenceProcess ref_process Reference Proc.
ObjectType object_type Type
BusinessTransactionCategory bus_transac_cat Event-Based Error Category
Action action User action
OrderID order_id Order ID
OrderItem order_item SO Item
SalesOrder sales_doc Sales Document
SalesOrderItem sales_doc_item Item
Ledger ledger Ledger
CompanyCode company_code Company Code
Plant plant Valuation Area
Product product Product Sold
RefObject ref_object Reference Object
CostEstimate cost_estimate ProdCostEst.No.
CostingType costing_type Costing Type
CostingDate costing_date Costing Date
CostingVersion costing_version Costing Version
ValuationVariant valuation_variant Valuation Variant
CostsEnteredManually costs_entered_manually Additive Costs
ValuationType valuation_type Valuation Type
PostingPeriod posting_period Posting Period
PostingYear posting_year Year in which the Impariment is posted for column 16
ServiceDocID service_doc_id Transaction ID
ServiceDocItemID service_doc_item_id Service Doc. Item
ServiceDocumentType service_doc_type Transaction Type
WBSElementExternalID WBS Element
ApplLognumber appl_lognumber Log Number
CreationTime created_time Time Stamp
CreationDate created_date Time Stamp
CreatedByUser created_by Version Created By
SimulationStatus simulation_status Simulation Status
OriginalReferenceDocument ref_obj_key Reference Key
ReferenceDocumentType ref_obj_type Ref. procedure
ReferenceDocumentLogicalSystem ref_obj_sys Logical System
PostingDate posting_date Posting Date
ControllingObject object_number Object number

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_EvtBsdOverheadErrorData.
-- 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.

CREATE VIEW P_EvtBsdOverheadErrorData AS
SELECT
  log_id AS LogId,
  log_type AS LogType,
  ref_process AS ReferenceProcess,
  object_type AS ObjectType,
  bus_transac_cat AS BusinessTransactionCategory,
  Action,
  order_id AS OrderID,
  order_item AS OrderItem,
  sales_doc AS SalesOrder,
  sales_doc_item AS SalesOrderItem,
  Ledger,
  company_code AS CompanyCode,
  Plant,
  Product,
  ref_object AS RefObject,
  cost_estimate AS CostEstimate,
  costing_type AS CostingType,
  costing_date AS CostingDate,
  costing_version AS CostingVersion,
  valuation_variant AS ValuationVariant,
  costs_entered_manually AS CostsEnteredManually,
  valuation_type AS ValuationType,
  posting_period AS PostingPeriod,
  posting_year AS PostingYear,
  service_doc_id AS ServiceDocID,
  service_doc_item_id AS ServiceDocItemID,
  service_doc_type AS ServiceDocumentType,
  cast(wbs_element_external_id as fis_wbs_no_conv preserving type) AS WBSElementExternalID,
  appl_lognumber AS ApplLognumber,
  created_time AS CreationTime,
  created_date AS CreationDate,
  created_by AS CreatedByUser,
  simulation_status AS SimulationStatus,
  ref_obj_key AS OriginalReferenceDocument,
  ref_obj_type AS ReferenceDocumentType,
  ref_obj_sys AS ReferenceDocumentLogicalSystem,
  posting_date AS PostingDate,
  object_number AS ControllingObject
FROM fcot_eb_log
;