I_JITInternalStatus

DDL: I_JITINTERNALSTATUS Type: view_entity BASIC

JIT Internal Processing Status

I_JITInternalStatus is a Basic CDS View (Dimension) that provides data about "JIT Internal Processing Status" in SAP S/4HANA. It reads from 1 data source (njit_c_instat) and exposes 3 fields with key field JITIntProcessingStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
njit_c_instat njit_c_instat from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_JITInternalStatusText _Text $projection.JITIntProcessingStatus = _Text.JITIntProcessingStatus

Annotations (13)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.technicalName IJITINTSTATUS view
EndUserText.label JIT Internal Processing Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey JITIntProcessingStatus view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY JITIntProcessingStatus int_stat Intl Proc. Status
JITIntProcessingStatusType status_type Status Type
_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_JITInternalStatus.
-- 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_JITInternalStatus AS
SELECT
  int_stat AS JITIntProcessingStatus,
  status_type AS JITIntProcessingStatusType
FROM njit_c_instat
LEFT OUTER JOIN I_JITInternalStatusText AS _Text ON JITIntProcessingStatus = _Text.JITIntProcessingStatus  -- association [0..*]
;