SELECT
instructLineItemID,
amount,
unprocessedAmount,
instructLineItemCategory,
instructionLineItemType,
effectiveDate,
finInstructionID,
concernRoleID,
creditDebitType,
statusCode,
caseNomineeID,
deliveryMethodType
INTO
:instructLineItemID,
:amount,
:unprocessedAmount,
:instructLineItemCategory,
:instructionLineItemType,
:effectiveDate,
:finInstructionID,
:concernRoleID,
:creditDebitType,
:statusCode,
:caseNomineeID,
:deliveryMethod
FROM
InstructionLineItem
WHERE InstructionLineItem.caseID = :caseID
AND InstructionLineItem.statusCode = :statusCode
AND InstructionLineItem.effectiveDate >= :effectiveDateFrom
AND InstructionLineItem.effectiveDate <= :effectiveDateTo
ORDER BY effectiveDate DESC
|