I_Queuedata

DDL: I_QUEUEDATA SQL: IQUEUEDATA Type: view BASIC

BEH Queue Data

I_Queuedata is a Basic CDS View that provides data about "BEH Queue Data" in SAP S/4HANA. It reads from 1 data source (beh_d_queue) and exposes 13 fields with key fields SAPObjectRepresentation, SAPObjectTaskType, BusEventSubscriberCode, BusinessEvent.

Data Sources (1)

SourceAliasJoin Type
beh_d_queue beh_d_queue from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IQUEUEDATA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label BEH Queue Data view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY SAPObjectRepresentation beh_d_queue bo_type SOT Name
KEY SAPObjectTaskType beh_d_queue bo_task SAP Object Task Type
KEY BusEventSubscriberCode beh_d_queue subscriber Subscriber ID
KEY BusinessEvent beh_d_queue event_guid Event GUID
SAPBusinessObjectKey1 beh_d_queue key1 INT4
SAPBusinessObjectKey2 beh_d_queue key2 Character Field of Length 12
SAPBusinessObjectKey3 beh_d_queue key3 INT2
SAPBusinessObjectKey4 beh_d_queue key4 BO Key Part (4)
SAPBusinessObjectKey5 beh_d_queue key5 BO Key Part (5)
SAPBusinessObjectKey6 beh_d_queue key6 BO Key Part (6)
SAPBusinessObjectKey7 beh_d_queue key7 Business Object Key
BusEventPriority beh_d_queue priority Workflow priority
CreationUTCDateTime beh_d_queue timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)

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 I_Queuedata.
-- 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: IQUEUEDATA

CREATE VIEW I_Queuedata AS
SELECT
  beh_d_queue.bo_type AS SAPObjectRepresentation,
  beh_d_queue.bo_task AS SAPObjectTaskType,
  beh_d_queue.subscriber AS BusEventSubscriberCode,
  beh_d_queue.event_guid AS BusinessEvent,
  beh_d_queue.key1 AS SAPBusinessObjectKey1,
  beh_d_queue.key2 AS SAPBusinessObjectKey2,
  beh_d_queue.key3 AS SAPBusinessObjectKey3,
  beh_d_queue.key4 AS SAPBusinessObjectKey4,
  beh_d_queue.key5 AS SAPBusinessObjectKey5,
  beh_d_queue.key6 AS SAPBusinessObjectKey6,
  beh_d_queue.key7 AS SAPBusinessObjectKey7,
  beh_d_queue.priority AS BusEventPriority,
  beh_d_queue.timestamp AS CreationUTCDateTime
FROM beh_d_queue
;