SELECT
finInstructionID,
typeCode,
concernRoleID,
statusCode,
amount,
effectiveDate,
postingDate,
creditDebitType,
currencyTypeCode,
currencyExchangeID,
instrumentGenInd
INTO
:finInstructionID,
:typeCode,
:concernRoleID,
:statusCode,
:amount,
:effectiveDate,
:postingDate,
:creditDebitType,
:currencyTypeCode,
:currencyExchangeID,
:instrumentGenInd
FROM
FinancialInstruction
WHERE FinancialInstruction.concernRoleID = :concernRoleID
AND FinancialInstruction.effectiveDate >= :effectiveDateFrom
AND FinancialInstruction.effectiveDate <= :effectiveDateTo
ORDER BY effectiveDate DESC
|