N_SBLE_LAST_SOURCE_VERSION

DDL: N_SBLE_LAST_SOURCE_VERSION Type: view_entity

BLE: Last source version

N_SBLE_LAST_SOURCE_VERSION is a CDS View that provides data about "BLE: Last source version" in SAP S/4HANA. It reads from 2 data sources (N_SBLE_SRC_VERSN_MAX_TIMESTMP, sble_src_version) and exposes 3 fields.

Data Sources (2)

SourceAliasJoin Type
N_SBLE_SRC_VERSN_MAX_TIMESTMP MaxTimeStamp inner
sble_src_version SourceVersion from

Annotations (2)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
badi_name sble_src_version badi_name Name of a BAdI
user_name sble_src_version user_name User Name
timestamp sble_src_version 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 N_SBLE_LAST_SOURCE_VERSION.
-- 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_SOURCE_VERSION AS
SELECT
  SourceVersion.badi_name AS badi_name,
  SourceVersion.user_name AS user_name,
  SourceVersion.timestamp AS timestamp
FROM sble_src_version AS SourceVersion
INNER JOIN N_SBLE_SRC_VERSN_MAX_TIMESTMP AS MaxTimeStamp ON /* join condition not captured in parsed metadata */
;