C_JITPackggMatlVH

DDL: C_JITPACKGGMATLVH Type: view_entity CONSUMPTION Package: NJIT_APP_REUSE_LIBRARY

Packaging Material Value Help

C_JITPackggMatlVH is a Consumption CDS View that provides data about "Packaging Material Value Help" in SAP S/4HANA. It reads from 1 data source (I_JITPackggMatlVH) and exposes 8 fields with key field Material. It has 3 associations to related views. Part of development package NJIT_APP_REUSE_LIBRARY.

Data Sources (1)

SourceAliasJoin Type
I_JITPackggMatlVH I_JITPackggMatlVH from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_ProductText _Text $projection.Material = _Text.Product
[0..1] I_Producttype _ProductType $projection.MaterialType = _ProductType.ProductType
[0..1] I_ProductGroup _ProductGroup $projection.MaterialGroup = _ProductGroup.MaterialGroup

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
Consumption.ranked true view
EndUserText.label Packaging Material Value Help view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Material view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view
VDM.viewType #CONSUMPTION view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Material
_Text _Text
MaterialType
MaterialGroup
MaterialBaseUnit I_JITPackggMatlVH BaseUnit Unit of Measure
AuthorizationGroup I_JITPackggMatlVH AuthorizationGroup AuthorizGroup
_ProductType _ProductType
_ProductGroup _ProductGroup

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_JITPackggMatlVH.
-- 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_JITPackggMatlVH AS
SELECT
  cast (I_JITPackggMatlVH.Product as matnr preserving type) AS Material,
  cast (I_JITPackggMatlVH.ProductType as mtart preserving type) AS MaterialType,
  cast (I_JITPackggMatlVH.ProductGroup as matkl preserving type) AS MaterialGroup,
  I_JITPackggMatlVH.BaseUnit AS MaterialBaseUnit,
  I_JITPackggMatlVH.AuthorizationGroup AS AuthorizationGroup
FROM I_JITPackggMatlVH
LEFT OUTER JOIN I_ProductText AS _Text ON Material = _Text.Product  -- association [0..*]
LEFT OUTER JOIN I_Producttype AS _ProductType ON MaterialType = _ProductType.ProductType  -- association [0..1]
LEFT OUTER JOIN I_ProductGroup AS _ProductGroup ON MaterialGroup = _ProductGroup.MaterialGroup  -- association [0..1]
;