I_ISLM_P_INF_RES_HIS

DDL: I_ISLM_P_INF_RES_HIS Type: view_entity

Inference Result History

I_ISLM_P_INF_RES_HIS is a CDS View that provides data about "Inference Result History" in SAP S/4HANA. It reads from 1 data source (islm_inf_res_his) and exposes 7 fields with key field guid. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
islm_inf_res_his islm_inf_res_his from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ISLM_P_INFERENCES _inference $projection.ref_entity_id = _inference.guid

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Inference Result History view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY guid guid UUID 22 char.
status status Workflow Status
caller caller Object Name
caller_type caller_type Caller Type
created_by created_by Version Created By
created_at created_at Uploaded On
_inference _inference

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_ISLM_P_INF_RES_HIS.
-- 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 I_ISLM_P_INF_RES_HIS AS
SELECT
  guid,
  status,
  caller,
  caller_type,
  created_by,
  created_at
FROM islm_inf_res_his
LEFT OUTER JOIN I_ISLM_P_INFERENCES AS _inference ON ref_entity_id = _inference.guid  -- association [1..1]
;