I_JITCtrlCycleCategory

DDL: I_JITCTRLCYCLECATEGORY SQL: IJITCCCATEGORY Type: view BASIC Package: NJIT_MODEL_O

JIT Control Cycle Category

I_JITCtrlCycleCategory is a Basic CDS View that provides data about "JIT Control Cycle Category" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field JITControlCycleCategory. It has 1 association to related views. Part of development package NJIT_MODEL_O.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_JITCtrlCycleCategoryText _Text _Text.JITControlCycleCategory = $projection.JITControlCycleCategory

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IJITCCCATEGORY view
AbapCatalog.compiler.compareFilter true view
EndUserText.label JIT Control Cycle Category view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.buffering.status #SWITCHED_OFF view
AbapCatalog.buffering.type #NONE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey JITControlCycleCategory view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY JITControlCycleCategory domvalue_l Lower Value
_Text _Text

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_JITCtrlCycleCategory.
-- 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.
-- SQL view name: IJITCCCATEGORY

CREATE VIEW I_JITCtrlCycleCategory AS
SELECT
  domvalue_l AS JITControlCycleCategory
FROM dd07l
LEFT OUTER JOIN I_JITCtrlCycleCategoryText AS _Text ON _Text.JITControlCycleCategory = JITControlCycleCategory  -- association [0..*]
;