I_JITCallTypeText

DDL: I_JITCALLTYPETEXT Type: view_entity BASIC Package: NJIT_MODEL_GENERAL

JIT Call Type - Text

I_JITCallTypeText is a Basic CDS View that provides data about "JIT Call Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, JITCallType. It has 2 associations to related views. Part of development package NJIT_MODEL_GENERAL.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_JITCallType _JITCallType $projection.JITCallType = _JITCallType.JITCallType

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.technicalName IJITCALLTPT view
EndUserText.label JIT Call Type - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey JITCallType view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
Search.searchable true view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Lang.
KEY JITCallType
DomainValue domvalue_l Lower Value
JITCallTypeText ddtext Short text
_JITCallType _JITCallType
_Language _Language

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_JITCallTypeText.
-- 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_JITCallTypeText AS
SELECT
  ddlanguage AS Language,
  cast(substring(dd07t.domvalue_l, 1, 1 ) as njit_call_type preserving type) AS JITCallType,
  domvalue_l AS DomainValue,
  ddtext AS JITCallTypeText
FROM dd07t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_JITCallType AS _JITCallType ON JITCallType = _JITCallType.JITCallType  -- association [1..1]
;