P_JITStockAvailabilityAnlys

DDL: P_JITSTOCKAVAILABILITYANLYS SQL: PJITSTKANLYS Type: view COMPOSITE

P_JITStockAvailabilityAnlys is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_MaterialPlant) and exposes 4 fields with key fields Material, Plant. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_MaterialPlant I_MaterialPlant from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[0..*] I_MaterialText _MaterialText $projection.Material = _MaterialText.Material

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PJITSTKANLYS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
_Plant _Plant
_MaterialText _MaterialText

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 P_JITStockAvailabilityAnlys.
-- 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: PJITSTKANLYS

CREATE VIEW P_JITStockAvailabilityAnlys AS
SELECT
  Material,
  Plant
FROM I_MaterialPlant
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
LEFT OUTER JOIN I_MaterialText AS _MaterialText ON Material = _MaterialText.Material  -- association [0..*]
;