I_JITOutbMaterialGoodsPostgTP

DDL: I_JITOUTBMATERIALGOODSPOSTGTP SQL: IJITOUTBMATGDS Type: view TRANSACTIONAL Package: NJIT_MODEL_O

Transcational view mat goods posting

I_JITOutbMaterialGoodsPostgTP is a Transactional CDS View that provides data about "Transcational view mat goods posting" in SAP S/4HANA. It reads from 1 data source (I_JITOutbCallCompMatl) and exposes 12 fields with key fields JITCallComponentUUID, ParentDraftKey, RootDraftKey, InternalJITCallNumber, CompGrpNumber. 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_JITOutbGoodsPostingTP _JITOutbGoodsPostingTP $projection.RootDraftKey = _JITOutbGoodsPostingTP.JITHeaderUUID and $projection.InternalJITCallNumber = _JITOutbGoodsPostingTP.InternalJITCallNumber

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IJITOUTBMATGDS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.writeDraftPersistence NJIT_MAT_GDS_D view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
EndUserText.label Transcational view mat goods posting view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY JITCallComponentUUID JITCallComponentUUID NodeID
KEY ParentDraftKey ParentDraftKey NodeID
KEY RootDraftKey RootDraftKey NodeID
KEY InternalJITCallNumber InternalJITCallNumber JIT Call Number
KEY CompGrpNumber CompGrpNumber Component Group No.
KEY JITCallItemNumber JITCallItemNumber Call Item Number
Material Material Vehicle Model
ActualDeliveredQuantity Requested Quantity
JITIntProcessingStatus JITIntProcessingStatus Transmitted Status
QuantityUnit QuantityUnit Unit of measure
_JITOutbGoodsPostingTP _JITOutbGoodsPostingTP
_ProductCompMatl _ProductCompMatl

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_JITOutbMaterialGoodsPostgTP.
-- 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: IJITOUTBMATGDS

CREATE VIEW I_JITOutbMaterialGoodsPostgTP AS
SELECT
  JITCallComponentUUID,
  ParentDraftKey,
  RootDraftKey,
  InternalJITCallNumber,
  CompGrpNumber,
  JITCallItemNumber,
  Material,
  cast(RequestedQuantity as njit_deliv_quan) AS ActualDeliveredQuantity,
  JITIntProcessingStatus,
  QuantityUnit
FROM I_JITOutbCallCompMatl
LEFT OUTER JOIN I_JITOutbGoodsPostingTP AS _JITOutbGoodsPostingTP ON RootDraftKey = _JITOutbGoodsPostingTP.JITHeaderUUID AND InternalJITCallNumber = _JITOutbGoodsPostingTP.InternalJITCallNumber  -- association [1..1]
;