P_EvtBsdLogWorklist

DDL: P_EVTBSDLOGWORKLIST SQL: PEBLOGWORKLIST Type: view BASIC

P_EvtBsdLogWorklist is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (fcot_eb_log) and exposes 39 fields with key field LogId. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
fcot_eb_log _WorkList from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_DomainFixedValueText _ReferenceProcessText _ReferenceProcessText.SAPDataDictionaryDomain = 'FCO_EB_REF_PROCESS' and _ReferenceProcessText.DomainValue = _WorkList.ref_process and _ReferenceProcessText.Language = $session.system_language
[1..1] I_DomainFixedValueText _ObjectTypeText _ObjectTypeText.SAPDataDictionaryDomain = 'FCO_EB_OBJECT_TYPE' and _ObjectTypeText.DomainValue = _WorkList.object_type and _ObjectTypeText.Language = $session.system_language
[1..1] I_BusTransactionCategoryText _BusTransactionCategoryText _BusTransactionCategoryText.BusinessTransactionCategory = _WorkList.bus_transac_cat and _BusTransactionCategoryText.Language = $session.system_language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PEBLOGWORKLIST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (39)

KeyFieldSource TableSource FieldDescription
KEY LogId log_id Log UUID
LogType log_type Log Entry Cat.
ReferenceProcess ref_process Reference Proc.
EvtBsdOrdRefTransText _ReferenceProcessText DomainText Short Description
ObjectType object_type Type
ObjectTypeText _ObjectTypeText DomainText Short Description
BusinessTransactionCategory bus_transac_cat Event-Based Error Category
BusTransactionCategoryName _BusTransactionCategoryText BusTransactionCategoryName
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
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_EvtBsdLogWorklist.
-- 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: PEBLOGWORKLIST

CREATE VIEW P_EvtBsdLogWorklist AS
SELECT
  log_id AS LogId,
  log_type AS LogType,
  ref_process AS ReferenceProcess,
  _ReferenceProcessText.DomainText AS EvtBsdOrdRefTransText,
  object_type AS ObjectType,
  _ObjectTypeText.DomainText AS ObjectTypeText,
  bus_transac_cat AS BusinessTransactionCategory,
  _BusTransactionCategoryText.BusTransactionCategoryName AS BusTransactionCategoryName,
  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,
  object_number AS ControllingObject
FROM fcot_eb_log AS _WorkList
LEFT OUTER JOIN I_DomainFixedValueText AS _ReferenceProcessText ON _ReferenceProcessText.SAPDataDictionaryDomain = 'FCO_EB_REF_PROCESS' AND _ReferenceProcessText.DomainValue = _WorkList.ref_process AND _ReferenceProcessText.Language = $session.system_language  -- association [1..1]
LEFT OUTER JOIN I_DomainFixedValueText AS _ObjectTypeText ON _ObjectTypeText.SAPDataDictionaryDomain = 'FCO_EB_OBJECT_TYPE' AND _ObjectTypeText.DomainValue = _WorkList.object_type AND _ObjectTypeText.Language = $session.system_language  -- association [1..1]
LEFT OUTER JOIN I_BusTransactionCategoryText AS _BusTransactionCategoryText ON _BusTransactionCategoryText.BusinessTransactionCategory = _WorkList.bus_transac_cat AND _BusTransactionCategoryText.Language = $session.system_language  -- association [1..1]
;