N_SBLE_LAST_ENHLOG

DDL: N_SBLE_LAST_ENHLOG Type: view_entity

BLE: Last ENHLOG

N_SBLE_LAST_ENHLOG is a CDS View that provides data about "BLE: Last ENHLOG" in SAP S/4HANA. It reads from 2 data sources (N_SBLE_ENHLOG_WITH_TIMESTAMP, N_SBLE_ENHLOG_MAX_TIMESTAMP) and exposes 2 fields.

Data Sources (2)

SourceAliasJoin Type
N_SBLE_ENHLOG_WITH_TIMESTAMP Enhlog from
N_SBLE_ENHLOG_MAX_TIMESTAMP MaxTimeStamp inner

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label BLE: Last ENHLOG view

Fields (2)

KeyFieldSource TableSource FieldDescription
created_by N_SBLE_ENHLOG_WITH_TIMESTAMP created_by Version Created By
created_on N_SBLE_ENHLOG_WITH_TIMESTAMP created_on Variant created on

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 N_SBLE_LAST_ENHLOG.
-- 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 N_SBLE_LAST_ENHLOG AS
SELECT
  Enhlog.created_by AS created_by,
  Enhlog.created_on AS created_on
FROM N_SBLE_ENHLOG_WITH_TIMESTAMP AS Enhlog
INNER JOIN N_SBLE_ENHLOG_MAX_TIMESTAMP AS MaxTimeStamp ON /* join condition not captured in parsed metadata */
;