Database SQL Operation: DeductionProductLink.readPreventOvelappingIndByCaseIDDeductionName
Description: | Reads deduction allow overlapping indicator for a case and deduction name. |
Sterotype: | ns |
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
|