Operation Details
Description: Reads the product name for a specified case identifier.
Sterotype: ns
SQL
SELECT
  Product.name
INTO
  :name 
FROM
  ProductDelivery,
  Product 
WHERE ProductDelivery.caseID = :caseID 
  AND Product.productID = ProductDelivery.productID