SATC_RT_APP_LOG_DDLV

DDL: SATC_RT_APP_LOG_DDLV SQL: SATC_RT_APPLG_DV Type: view

ATC Display ID -> Application Log Attributes

SATC_RT_APP_LOG_DDLV is a CDS View that provides data about "ATC Display ID -> Application Log Attributes" in SAP S/4HANA. It reads from 1 data source (balhdr) and exposes 3 fields with key field Lognumber.

Data Sources (1)

SourceAliasJoin Type
balhdr balhdr from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SATC_RT_APPLG_DV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ATC Display ID -> Application Log Attributes view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Lognumber lognumber UUID
display_id_c
LogHandle log_handle Migration Log Handle

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 SATC_RT_APP_LOG_DDLV.
-- 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: SATC_RT_APPLG_DV

CREATE VIEW SATC_RT_APP_LOG_DDLV AS
SELECT
  Lognumber,
  left( extnumber, 32 ) AS display_id_c,
  log_handle AS LogHandle
FROM balhdr
;