C_JITPlantValueHelp

DDL: C_JITPLANTVALUEHELP Type: view_entity CONSUMPTION Package: NJIT_CORE

Plant

C_JITPlantValueHelp is a Consumption CDS View that provides data about "Plant" in SAP S/4HANA. It reads from 1 data source (I_JITPlant) and exposes 6 fields with key field Plant. It has 1 association to related views. It is exposed through 1 OData service (NJIT_UI_JITSUPPLYCONTROL). Part of development package NJIT_CORE.

Data Sources (1)

SourceAliasJoin Type
I_JITPlant I_JITPlant from

Associations (1)

CardinalityTargetAliasCondition
[0..*] C_JITMaterialValueHelp _JITMaterialValueHelp $projection.Plant = _JITMaterialValueHelp.Plant

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Consumption.ranked true view
EndUserText.label Plant view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Plant view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
NJIT_UI_JITSUPPLYCONTROL

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant Valuation Area
PlantName PlantName Plant Name
SalesOrganization SalesOrganization Sales Organization
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
Division Division Internal Division ID
_JITMaterialValueHelp _JITMaterialValueHelp

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_JITPlantValueHelp.
-- 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.

CREATE VIEW C_JITPlantValueHelp AS
SELECT
  Plant,
  PlantName,
  SalesOrganization,
  DistributionChannel,
  Division
FROM I_JITPlant
LEFT OUTER JOIN C_JITMaterialValueHelp AS _JITMaterialValueHelp ON Plant = _JITMaterialValueHelp.Plant  -- association [0..*]
;