I_JITPckgGrpRelToProdn

DDL: I_JITPCKGGRPRELTOPRODN Type: view_entity COMPOSITE Package: NJIT_APP_RELTOPRODN_SEQJC

JIT Pakg GrpRep Man Itm: Composite view

I_JITPckgGrpRelToProdn is a Composite CDS View that provides data about "JIT Pakg GrpRep Man Itm: Composite view" in SAP S/4HANA. It reads from 1 data source (I_JITPckgGrpHeader) and exposes 33 fields with key field JITPckgGrpUUID. It has 3 associations to related views. Part of development package NJIT_APP_RELTOPRODN_SEQJC.

Data Sources (1)

SourceAliasJoin Type
I_JITPckgGrpHeader I_JITPckgGrpHeader from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_JITPckgGrpDefHier _JITPckgGrpDefHier $projection.JITPckgGrpDefUUID = _JITPckgGrpDefHier.JITChildPckgGrpDefUUID
[1..1] I_Customer_to_BusinessPartner _CustomerToBusinessPartner $projection.ShipToParty = _CustomerToBusinessPartner.Customer
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label JIT Pakg GrpRep Man Itm: Composite view view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #COMPOSITE view

Fields (33)

KeyFieldSource TableSource FieldDescription
KEY JITPckgGrpUUID JITPckgGrpUUID NodeID
JITPckgGrpID JITPckgGrpID Package Group ID
JITPckgGrpDefUUID JITPckgGrpDefUUID NodeID
JITPckgGrpStatus JITPckgGrpStatus Packing Group Status
ShipToParty ShipToParty Ship-To Party (obsolete)
UnloadingPointName UnloadingPointName Unloading Point Name
ShippingPoint ShippingPoint Shipping Point
PlannedShippingDateTime PlannedShippingDateTime Pl. Shippg Date Time
RequirementDateTime RequirementDateTime Time Stamp
MaterialAvailabilityDateTime MaterialAvailabilityDateTime Time Stamp
MaterialAvailabilityDate DeliveryCreationDate Delivery Date
MaterialAvailabilityTime DeliveryCreationTime Field of type TIMS
ProductionStartDate ProductionStartDate Start of Production
ProductionEndDate ProductionEndDate Production End Date
GrossWeight GrossWeight Total Weight
WeightUnit WeightUnit Weight unit
CustSupplyArea CustSupplyArea Cust. Supply Area
CustAssemblyLoc CustAssemblyLoc Assembly Location
Plant Plant Valuation Area
LastChangedByUser LastChangedByUser User Name
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp
ChangedOnDateTime ChangedOnDateTime Last Changed At
CustomerUUID CustomerUUID NodeID
RepetitiveManufacturingIsAllwd RepetitiveManufacturingIsAllwd Repetitive Manufacturing Enabled
JITAltvHndlgUnitID JITAltvHndlgUnitID Alt. PG ID Short
JITAltvHndlgUnitIDShrt JITAltvHndlgUnitIDShrt Alt. PG ID Short
_Customer _Customer
_JITCallCompGroupBasic _JITCallCompGroupBasic
_JITPckgGrpDef _JITPckgGrpDef
_CustomerToBusinessPartner _CustomerToBusinessPartner
_Plant _Plant
_JITPckgGrpDefHier _JITPckgGrpDefHier

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_JITPckgGrpRelToProdn.
-- 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 I_JITPckgGrpRelToProdn AS
SELECT
  JITPckgGrpUUID,
  JITPckgGrpID,
  JITPckgGrpDefUUID,
  JITPckgGrpStatus,
  ShipToParty,
  UnloadingPointName,
  ShippingPoint,
  PlannedShippingDateTime,
  RequirementDateTime,
  MaterialAvailabilityDateTime,
  DeliveryCreationDate AS MaterialAvailabilityDate,
  DeliveryCreationTime AS MaterialAvailabilityTime,
  ProductionStartDate,
  ProductionEndDate,
  GrossWeight,
  WeightUnit,
  CustSupplyArea,
  CustAssemblyLoc,
  Plant,
  LastChangedByUser,
  CreatedByUser,
  CreationDateTime,
  ChangedOnDateTime,
  CustomerUUID,
  RepetitiveManufacturingIsAllwd,
  JITAltvHndlgUnitID,
  JITAltvHndlgUnitIDShrt
FROM I_JITPckgGrpHeader
LEFT OUTER JOIN I_JITPckgGrpDefHier AS _JITPckgGrpDefHier ON JITPckgGrpDefUUID = _JITPckgGrpDefHier.JITChildPckgGrpDefUUID  -- association [0..1]
LEFT OUTER JOIN I_Customer_to_BusinessPartner AS _CustomerToBusinessPartner ON ShipToParty = _CustomerToBusinessPartner.Customer  -- association [1..1]
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [0..1]
;