I_JITCallApplicationLog

DDL: I_JITCALLAPPLICATIONLOG Type: view_entity BASIC

JIT Call Application Log

I_JITCallApplicationLog is a Basic CDS View that provides data about "JIT Call Application Log" in SAP S/4HANA. It reads from 1 data source (balhdr) and exposes 6 fields with key field ApplicationLogHandle.

Data Sources (1)

SourceAliasJoin Type
balhdr log from

Annotations (6)

NameValueLevelField
EndUserText.label JIT Call Application Log view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ApplicationLogHandle balhdr log_handle Migration Log Handle
ApplicationLogObject balhdr object TRFM Object
ApplicationLogSubobject balhdr subobject Triggering obj.
JITCallProcessingLogID balhdr extnumber External ID
ApplicationLog balhdr lognumber UUID
msg_cnt_i000000thenIelseSendasSeverity

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_JITCallApplicationLog.
-- 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_JITCallApplicationLog AS
SELECT
  log.log_handle AS ApplicationLogHandle,
  log.object AS ApplicationLogObject,
  log.subobject AS ApplicationLogSubobject,
  log.extnumber AS JITCallProcessingLogID,
  log.lognumber AS ApplicationLog,
  case when log.msg_cnt_a <> '000000' then 'A' when log.msg_cnt_e <> '000000' then 'E' when log.msg_cnt_w <> '000000' then 'W' when log.msg_cnt_i <> '000000' then 'I' else 'S' end as Severity AS msg_cnt_i000000thenIelseSendasSeverity
FROM balhdr AS log
;