C_JITOutbCallOvwByProcgStsExt

DDL: C_JITOUTBCALLOVWBYPROCGSTSEXT SQL: CJITOVWPROCEXT Type: view CONSUMPTION Package: NJIT_MODEL_O

JIT Call Ovw By Int Proc Sts Ext Rplnmt

C_JITOutbCallOvwByProcgStsExt is a Consumption CDS View that provides data about "JIT Call Ovw By Int Proc Sts Ext Rplnmt" in SAP S/4HANA. It reads from 1 data source (I_JITOutbCallCompMatl) and exposes 8 fields with key fields InternalJITCallNumber, Material. It has 1 association to related views. Part of development package NJIT_MODEL_O.

Data Sources (1)

SourceAliasJoin Type
I_JITOutbCallCompMatl I_JITOutbCallCompMatl from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_JITOutbCallCompGrpData _JITOutbCallCompGrpData $projection.InternalJITCallNumber = _JITOutbCallCompGrpData.InternalJITCallNumber

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CJITOVWPROCEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label JIT Call Ovw By Int Proc Sts Ext Rplnmt view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
UI.headerInfo.typeName JIT Call Ovw By Int Procg Status view
UI.headerInfo.typeNamePlural JIT Calls Ovw By Int Procg Status view
UI.headerInfo.title.value JITInternalStatusText view
UI.headerInfo.title.label JIT IntProcessing Status view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY InternalJITCallNumber InternalJITCallNumber JIT Call Number
KEY Material Material Vehicle Model
Plant _JITOutbCallCompGrpData Plant Valuation Area
JITExternalReplenishment _JITOutbCallCompGrpData JITExternalReplenishment
JITIntProcessingStatus JITIntProcessingStatus Internal Processing Status
JITInternalStatusText
NumberOfItems Number of JIT Calls
_JITInternalStatus _JITInternalStatus

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 C_JITOutbCallOvwByProcgStsExt.
-- 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: CJITOVWPROCEXT

CREATE VIEW C_JITOutbCallOvwByProcgStsExt AS
SELECT
  InternalJITCallNumber,
  Material,
  _JITOutbCallCompGrpData.Plant AS Plant,
  _JITOutbCallCompGrpData.JITExternalReplenishment AS JITExternalReplenishment,
  JITIntProcessingStatus,
  _JITInternalStatus._Text[1: Language=$session.system_language].JITInternalStatusText AS JITInternalStatusText,
  cast(1 as abap.int4) AS NumberOfItems
FROM I_JITOutbCallCompMatl
LEFT OUTER JOIN I_JITOutbCallCompGrpData AS _JITOutbCallCompGrpData ON InternalJITCallNumber = _JITOutbCallCompGrpData.InternalJITCallNumber  -- association [1..1]
;