I_JITApplicationAreaBasic

DDL: I_JITAPPLICATIONAREABASIC Type: view_entity BASIC Package: NJIT_MODEL_GENERAL

Messages in Just-In-Time processing

I_JITApplicationAreaBasic is a Basic CDS View that provides data about "Messages in Just-In-Time processing" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 3 fields with key fields SystemMessageIdentification, SystemMessageNumber. Part of development package NJIT_MODEL_GENERAL.

Data Sources (1)

SourceAliasJoin Type
t100 t100 from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Messages in Just-In-Time processing view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SystemMessageIdentification arbgb Message ID
KEY SystemMessageNumber msgnr Message
SystemMessageText text User Group

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_JITApplicationAreaBasic.
-- 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_JITApplicationAreaBasic AS
SELECT
  arbgb AS SystemMessageIdentification,
  msgnr AS SystemMessageNumber,
  text AS SystemMessageText
FROM t100
;