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 8 fields with key field JITActionCtrl. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
njit_c_actctrl njit_c_actctrl from

Associations (4)

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

Annotations (10)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
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 #S view
VDM.viewType #BASIC view

Fields (8)

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
_JITActionCtrlExtStsActn _JITActionCtrlExtStsActn
_JITActionCtrlProcgStsActn _JITActionCtrlProcgStsActn

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]
LEFT OUTER JOIN I_JITActionCtrlExtStsActn AS _JITActionCtrlExtStsActn ON JITActionCtrl = _JITActionCtrlExtStsActn.JITActionCtrl  -- association [0..*]
LEFT OUTER JOIN I_JITActionCtrlProcgStsActn AS _JITActionCtrlProcgStsActn ON JITActionCtrl = _JITActionCtrlProcgStsActn.JITActionCtrl  -- association [0..*]
;