I_DayEndRun

DDL: I_DAYENDRUN SQL: IDAYENDRUN Type: view BASIC

Day End Run

I_DayEndRun is a Basic CDS View that provides data about "Day End Run" in SAP S/4HANA. It reads from 1 data source (cmm_dend_run) and exposes 7 fields.

Data Sources (1)

SourceAliasJoin Type
cmm_dend_run cmm_dend_run from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IDAYENDRUN view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Day End Run view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (7)

KeyFieldSource TableSource FieldDescription
EndOfDayBusinessEntityKey entity_key Node Key
EndOfDaySnapshotDate cutoff_date Snapshot Date
EvaluationDateRoutine offset_det Eval. Dat. R.
EvaluationKeyDate eval_date Key Date
EndOfDaySnapshotTime time Time Stamp
EndOfDaySnapshotTimezone tzone Time Zone Difference
EndOfDaySnapshotDateTime cutoff_timestamp Timestamp

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_DayEndRun.
-- 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: IDAYENDRUN

CREATE VIEW I_DayEndRun AS
SELECT
  entity_key AS EndOfDayBusinessEntityKey,
  cutoff_date AS EndOfDaySnapshotDate,
  offset_det AS EvaluationDateRoutine,
  eval_date AS EvaluationKeyDate,
  time AS EndOfDaySnapshotTime,
  tzone AS EndOfDaySnapshotTimezone,
  cutoff_timestamp AS EndOfDaySnapshotDateTime
FROM cmm_dend_run
;