I_EntSrchRuntimeBufferDetails

DDL: I_ENTSRCHRUNTIMEBUFFERDETAILS SQL: IENTSRCHRTBUFDTS Type: view BASIC

Enterprise Search CDS Models Runtime Buffer Details

I_EntSrchRuntimeBufferDetails is a Basic CDS View that provides data about "Enterprise Search CDS Models Runtime Buffer Details" in SAP S/4HANA. It reads from 4 data sources (ddldependency, esh_adm_sc_main, esh_adm_status, esh_om_aotyp) and exposes 4 fields with key fields EntSrchModelName, EntSrchModelViewName, EntSrchModelState.

Data Sources (4)

SourceAliasJoin Type
ddldependency _cdsmapping from
esh_adm_sc_main _eshconnector left_outer
esh_adm_status _eshconnectorstatus left_outer
esh_om_aotyp _eshmodel left_outer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IENTSRCHRTBUFDTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Enterprise Search CDS Models Runtime Buffer Details view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EntSrchModelName ddlname DDL Source Name
KEY EntSrchModelViewName objectname Object name
KEY EntSrchModelState state Vehicle Region
EntSrchModelConnectorID esh_adm_sc_main sc_id Search Connector ID

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_EntSrchRuntimeBufferDetails.
-- 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: IENTSRCHRTBUFDTS

CREATE VIEW I_EntSrchRuntimeBufferDetails AS
SELECT
  ddlname AS EntSrchModelName,
  objectname AS EntSrchModelViewName,
  state AS EntSrchModelState,
  _eshconnector.sc_id AS EntSrchModelConnectorID
FROM ddldependency AS _cdsmapping
LEFT OUTER JOIN esh_om_aotyp AS _eshmodel ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN esh_adm_sc_main AS _eshconnector ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN esh_adm_status AS _eshconnectorstatus ON /* join condition not captured in parsed metadata */
;