Operation Details
Description: This method uses the case ID to find the relevant minimum payment amount for that product.
Sterotype: ns
SQL
SELECT
  Product.minimumPmtAmt
INTO
  :amount 
FROM
  ProductDelivery,
  Product 
WHERE ProductDelivery.caseID = :caseID 
  AND ProductDelivery.productID = Product.productID