I_JITStockAvailabilityAnlys

DDL: I_JITSTOCKAVAILABILITYANLYS SQL: IJITSTKANLYS Type: view COMPOSITE

Stock Availability Analysis for Material

I_JITStockAvailabilityAnlys is a Composite CDS View that provides data about "Stock Availability Analysis for Material" in SAP S/4HANA. It reads from 1 data source (P_JITStockAvailabilityAnlys) and exposes 5 fields with key fields Material, Plant.

Data Sources (1)

SourceAliasJoin Type
P_JITStockAvailabilityAnlys P_JITStockAvailabilityAnlys from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IJITSTKANLYS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Stock Availability Analysis for Material view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
AbapCatalog.preserveKey true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
PlantName _Plant PlantName Plant Name
MaterialName
_Plant _Plant

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_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: IJITSTKANLYS

CREATE VIEW I_JITStockAvailabilityAnlys AS
SELECT
  Material,
  Plant,
  _Plant.PlantName AS PlantName,
  _MaterialText[1:Language = $session.system_language].MaterialName AS MaterialName
FROM P_JITStockAvailabilityAnlys
;