Operation Details
Description: Reads deduction allow overlapping indicator for a case and deduction name.
Sterotype: ns
SQL
SELECT
  DeductionProductLink.preventOverlappingInd
INTO
  :preventOverlappingInd
FROM
  ProductDelivery,
  DeductionProductLink,
  Deduction
WHERE ProductDelivery.caseID = :caseID
  AND ProductDelivery.productID = DeductionProductLink.productID
  AND Deduction.deductionName = :deductionName
  AND Deduction.deductionID = DeductionProductLink.deductionID