C_JITOutbCallOvwByDateTime

DDL: C_JITOUTBCALLOVWBYDATETIME SQL: CJITOVWBYDTETME Type: view CONSUMPTION Package: NJIT_MODEL_O

JIT Call overview by Date Time

C_JITOutbCallOvwByDateTime is a Consumption CDS View that provides data about "JIT Call overview by Date Time" in SAP S/4HANA. It reads from 1 data source (I_JITOutbCallCompGrpData) and exposes 5 fields with key field InternalJITCallNumber. Part of development package NJIT_MODEL_O.

Data Sources (1)

SourceAliasJoin Type
I_JITOutbCallCompGrpData I_JITOutbCallCompGrpData from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CJITOVWBYDTETME view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label JIT Call overview by Date Time view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
UI.headerInfo.typeName JIT Call Overview by Date/Time view
UI.headerInfo.typeNamePlural JIT Calls Overview by Date/Time view
UI.headerInfo.title.value CreationDateTime view
UI.headerInfo.title.label Creation Date/Time view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InternalJITCallNumber InternalJITCallNumber JIT Call Number
Plant Plant Valuation Area
CreationDateTime CreationDateTime Timestamp
NumberOfItems Number of JIT Calls
JITLifecycleStatus JITLifecycleStatus JIT Call Status

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_JITOutbCallOvwByDateTime.
-- 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: CJITOVWBYDTETME

CREATE VIEW C_JITOutbCallOvwByDateTime AS
SELECT
  InternalJITCallNumber,
  Plant,
  CreationDateTime,
  cast(1 as abap.int4) AS NumberOfItems,
  JITLifecycleStatus
FROM I_JITOutbCallCompGrpData
;