I_JITApplicationAreaBasic

DDL: I_JITAPPLICATIONAREABASIC Type: view_entity BASIC

Basic View for Application Area

I_JITApplicationAreaBasic is a Basic CDS View that provides data about "Basic View for Application Area" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 3 fields with key fields SystemMessageIdentification, SystemMessageNumber.

Data Sources (1)

SourceAliasJoin Type
t100 t100 from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Basic View for Application Area view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L 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
;