I_JITActionCtrl

DDL: I_JITACTIONCTRL Type: view_entity BASIC

JIT Action Control

I_JITActionCtrl is a Basic CDS View that provides data about "JIT Action Control" in SAP S/4HANA. It reads from 1 data source (njit_c_actctrl) and exposes 6 fields with key field JITActionCtrl. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
njit_c_actctrl njit_c_actctrl from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_JITActionCtrlTxt _Text $projection.JITActionCtrl = _Text.JITActionCtrl
[0..1] I_JITCallType _JITCallType $projection.JITCallType = _JITCallType.JITCallType

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.technicalName IJITACTNCTRL view
EndUserText.label JIT Action Control view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey JITActionCtrl view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY JITActionCtrl act_cntrl Action Control
JITActionCtrlText
JITScenario njit_scenario JIT Scenario
JITCallType njit_call_type Call Type
_Text _Text
_JITCallType _JITCallType

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_JITActionCtrl.
-- 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_JITActionCtrl AS
SELECT
  act_cntrl AS JITActionCtrl,
  cast( ' ' as njit_act_cntrlt ) AS JITActionCtrlText,
  njit_scenario AS JITScenario,
  njit_call_type AS JITCallType
FROM njit_c_actctrl
LEFT OUTER JOIN I_JITActionCtrlTxt AS _Text ON JITActionCtrl = _Text.JITActionCtrl  -- association [0..*]
LEFT OUTER JOIN I_JITCallType AS _JITCallType ON JITCallType = _JITCallType.JITCallType  -- association [0..1]
;